| 1 | <?php |
||
| 10 | class FakeTransport implements TransportInterface |
||
| 11 | { |
||
| 12 | const RESPONSE_FILE = 'skyscanner_response.json'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $resourcesDir; |
||
| 18 | |||
| 19 | public function __construct($resourcesDir) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param SessionParameters $parameters |
||
| 26 | * @param bool $newSession |
||
| 27 | * @return \stdClass |
||
| 28 | */ |
||
| 29 | public function findQuotes(SessionParameters $parameters, $newSession) |
||
| 44 | } |
||
| 45 |