/**
  * @Given the current listed fare for the :origin to :destination route is £:fare
  */
 public function theCurrentListedFareForTheToRouteIsPs(Airport $origin, Airport $destination, Fare $fare)
 {
     //throw new PendingException;
     $this->fareList = new Fake\FareList();
     $this->fareList->listFare(Route::fromTo($origin, $destination), $fare);
 }