| 1 | <?php |
||
| 8 | class RoomRepository extends AbstractRepository |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Поиск по координатам |
||
| 13 | * @param int $x |
||
| 14 | * @param int $y |
||
| 15 | * @return Room|null |
||
| 16 | */ |
||
| 17 | public function findOneByXandY($x, $y) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Поиск всех комнат |
||
| 24 | * @return Room[] |
||
| 25 | */ |
||
| 26 | public function findAllRooms() |
||
| 30 | } |
||
| 31 |