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

SampleClass.php (205B)


      1 <?php
      2 class SampleClass
      3 {
      4     public $a;
      5     protected $b;
      6     protected $c;
      7 
      8     public function __construct($a, $b, $c)
      9     {
     10         $this->a = $a;
     11         $this->b = $b;
     12         $this->c = $c;
     13     }
     14 }