1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<?php
class MaClass {
public $monObjet1,
$monObjet2,
$monObjet2;
//Soit par un controler ==> Ou tu IMPOSES un ou des ARRAY
/**
*
* @param type $monObjet1
* @param type $monObjet2
* @param type $monObjet3
*/
public function __construct($monObjet1 = array(), $monObjet2 = array(), $monObjet3 = array()) {
//Puis un petit
$this->monObjet1 = $monObjet1;
//etc..
/*
* Ou par un Setter générique
*/
$this->set('monObjet1', $monObjet1)
->set('monObjet2', $monObjet2)
->set('monObjet3', $monObjet3);
//Ou alors
$this->set('monObjet1', $monObjet1);
$this->set('monObjet2', $monObjet2);
$this->set('monObjet3', $monObjet3);
}
//Mon SETTER
/**
*
* @param type $attribute
* @param type $str
* @return \MaClass
*/
public function set($attribute, $str) {
$this->$attribute = $str;
return $this;
}
}
?> |