gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

source4.php (436B)


      1 <?php
      2 // Declare the interface 'iTemplate'
      3 interface iTemplate
      4 {
      5     public function setVariable($name, $var);
      6     public function
      7         getHtml($template);
      8 }
      9 
     10 interface a
     11 {
     12     public function foo();
     13 }
     14 
     15 interface b extends a
     16 {
     17     public function baz(Baz $baz);
     18 }
     19 
     20 // short desc for class that implement a unique interface
     21 class c implements b
     22 {
     23     public function foo()
     24     {
     25     }
     26 
     27     public function baz(Baz $baz)
     28     {
     29     }
     30 }