Quantcast
Channel: All Forums
Viewing all articles
Browse latest Browse all 27852

Intelligent code completion in Php

$
0
0

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);
?>

 


Viewing all articles
Browse latest Browse all 27852

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>