Example #1
0
 public static function book($showId, $seats)
 {
     $qfx = new self();
     $qfx->showId = $showId;
     $qfx->seatsToBook = $seats;
     return $qfx->login() && $qfx->getSeats() && $qfx->addSeats() && $qfx->confirmSeats();
 }