コード例 #1
0
ファイル: Price.php プロジェクト: priyankajsr19/shalu
 public function __construct($price, $currency)
 {
     parent::__construct();
     if ($price !== null) {
         $this->setPrice($price);
     }
     if ($currency !== null) {
         $this->setCurrency($currency);
     }
 }
コード例 #2
0
 public function __construct($conditionType = null, $conditionNote = null)
 {
     parent::__construct();
     if ($conditionType !== null) {
         $this->setConditionType($conditionType);
     }
     if ($conditionNote != null) {
         $this->setConditionNote($conditionNote);
     }
 }
コード例 #3
0
ファイル: Relation.php プロジェクト: priyankajsr19/shalu
 public function __construct($sku = null, $type = null)
 {
     parent::__construct();
     if ($sku !== null) {
         $this->setSKU($sku);
     }
     if ($type !== null) {
         $this->setType($type);
     }
 }
コード例 #4
0
ファイル: FashionOther.php プロジェクト: priyankajsr19/shalu
 public function __construct()
 {
     parent::__construct();
 }