| 1 | <?php |
||
| 16 | class AddressContext extends DefaultContext |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @Given there is an address located at :city |
||
| 20 | */ |
||
| 21 | public function thereIsAddressLocatedAtCity(string $city) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @Given there are :count addresses located at :city |
||
| 28 | */ |
||
| 29 | public function thereAreAddressesLocatedAtCity(int $count, string $city) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param int $count |
||
| 36 | * |
||
| 37 | * @param array $options |
||
| 38 | */ |
||
| 39 | private function createAddresses(int $count, array $options = []): void |
||
| 51 | } |
||
| 52 |