| 1 | <?php |
||
| 4 | class ParkingRepository implements \Parking\Domain\Repository\ParkingRepository |
||
| 5 | { |
||
| 6 | |||
| 7 | private $path; |
||
| 8 | |||
| 9 | public function __construct($path) |
||
| 13 | |||
| 14 | public function get() |
||
| 19 | |||
| 20 | public function getSlotsForCarsWithColour($colour) |
||
| 29 | |||
| 30 | public function getPlateForCarsWithColour($colour) |
||
| 40 | |||
| 41 | public function getSlotKeysForCarsWithColour($colour) |
||
| 53 | |||
| 54 | public function getSlotKeyForCarWithPlate($plate) |
||
| 65 | |||
| 66 | public function store(\Parking\Domain\Parking $parking) |
||
| 70 | |||
| 71 | |||
| 72 | } |