Exemple #1
0
 public function __construct($name, $age, $dick, $balls)
 {
     parent::__construct($name, $age);
     $this->dick = $dick;
     $this->balls = $balls;
 }
Exemple #2
0
 public function __construct($name, $age, $boobs, $butt)
 {
     parent::__construct($name, $age);
     $this->boobs = $boobs;
     $this->butt = $butt;
 }
 function __construct($name, $passwd = "123456")
 {
     print "==> contructeur User (" . $name . ")\n";
     parent::__construct($name);
     $this->password = $passwd;
 }
Exemple #4
0
 function __construct()
 {
     parent::__construct();
 }
Exemple #5
0
 public function __construct($name, $role)
 {
     parent::__construct($name, $role);
 }
Exemple #6
0
 function __construct($age, $heightCM, $weightKG)
 {
     parent::__construct($age, $this->gender, $heightCM, $weightKG);
 }