__construct() public method

public __construct ( $breed )
Example #1
0
 public function __construct()
 {
     parent::__construct();
     return $this->rexResponse = "Rex's Response: ";
 }
Example #2
0
 function __construct($breed, $size = 0)
 {
     echo __METHOD__, $breed, $size;
     parent::__construct($breed);
 }
Example #3
0
 public function __construct($a, $n, $ec)
 {
     parent::__construct($a, $n);
     $this->eyeColor = $ec;
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     return $this->fidoResponse = "Fido's Response: ";
 }