WebMatrix is not php code completion in smart. Generated classes, inheritance, methods of static methods and does not see it. Replace them with variables. Development of this property. But of course, the page works properly. But it does not help the developer webmarix
<?php class Temel { function TemelTopla($a, $b) { return $a + $b; } } // Here does not help the code completion (after the classes listed extends) class Sinif extends Temel { function StatikOlmayanTopla($a, $b) { return $a + $b; } static function StatikTopla($a, $b) { return $a + $b; } } // Code completion doesn't help the underlying transactions $degisken = new Sinif(); echo $degisken->StatikOlmayanTopla(20, 10) . "<br />"; echo $degisken->TemelTopla(40, 10) . "<br />"; echo Sinif::StatikTopla(30, 20); ?>