コード例 #1
0
 /**
  * @depends testGetSub
  */
 public function testGetProperty($cateId)
 {
     $postage = new Product(Config::get());
     $response = $postage->getProperty($cateId);
     $this->assertTrue(is_array($response));
     return $response;
 }
コード例 #2
0
ファイル: Combo.php プロジェクト: Symfomany/laravelcinema
 /**
  * @param       $name
  * @param array $products
  * @param Money $price
  */
 public function __construct($name, array $products, Money $price = null)
 {
     $this->setProducts($products);
     parent::__construct($name, $price ?: $this->totalPrice(), $this->totalWeight());
 }
コード例 #3
0
 public function __construct($name, Money $price)
 {
     parent::__construct($name, $price, new Weight(0));
 }