| 1 | <?php |
||
| 10 | class CreateSettingsContext implements Context |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var SettingApplication |
||
| 14 | */ |
||
| 15 | private $settings; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @Given there is nothing registered in storage system |
||
| 19 | */ |
||
| 20 | public function thereIsNothingRegisteredInStorageSystem() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @Given there is already registered :key setting with :value value |
||
| 28 | */ |
||
| 29 | public function alreadyRegisteredKeyWithValue($key, $value) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @When you try to create new setting named :settingName with value :settingValue |
||
| 38 | */ |
||
| 39 | public function youTryToCreateNewSettingNamedWithValue($settingName, $settingValue) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @Then the value for :key should be :value |
||
| 46 | */ |
||
| 47 | public function theValueForKeyShouldBe($key, $value) |
||
| 51 | } |
||
| 52 |