コード例 #1
0
 /**
  * @return bool
  */
 public function acceptRace()
 {
     return $this->customer->confirm();
 }
コード例 #2
0
ファイル: Customer.php プロジェクト: Vincebml/PHPatterns
 /**
  * @param Mediator\TaxiCallCenterInterface $mediator
  */
 public function __construct(Mediator\TaxiCallCenterInterface $mediator)
 {
     parent::__construct($mediator);
 }
コード例 #3
0
ファイル: Taxi.php プロジェクト: Vincebml/PHPatterns
 /**
  * @param Mediator\TaxiCallCenterInterface $mediator
  */
 public function __construct(Mediator\TaxiCallCenterInterface $mediator)
 {
     parent::__construct($mediator);
     $this->available = true;
 }