Blame | Last modification | View Log | Download
<?php class SampleClass { public $a; protected $b; protected $c; public function __construct($a, $b, $c) { $this->a = $a; $this->b = $b; $this->c = $c; } }
<?php
class SampleClass
{
public $a;
protected $b;
protected $c;
public function __construct($a, $b, $c)
$this->a = $a;
$this->b = $b;
$this->c = $c;
}