예제 #1
0
파일: Passenger.php 프로젝트: ilnytskyi/php
 public function sitInCar(PassengersCar $car)
 {
     if ($this->inCar) {
         $car->addPassanger($this);
     } else {
         $this->inCar = true;
         $this->carId = $car->getId();
         $car->addPassanger($this);
     }
 }