コード例 #1
0
ファイル: DiscountCondition.php プロジェクト: saiber/livecart
 public function toArray()
 {
     $array = parent::toArray();
     if ($this->subConditions) {
         foreach ($this->subConditions as $sub) {
             $array['sub'][] = $sub->toArray();
         }
     }
     if ($this->records) {
         foreach ($this->records as $record) {
             $array['records'][] = $record->toArray();
         }
     }
     return $array;
 }