1 | <?php |
||
20 | final class NotificationContext implements Context |
||
21 | { |
||
22 | /** @var ApiClientInterface */ |
||
23 | private $client; |
||
24 | |||
25 | public function __construct(ApiClientInterface $client) |
||
29 | |||
30 | /** |
||
31 | * @Then I should be notified that it has been successfully created |
||
32 | */ |
||
33 | public function iShouldBeNotifiedThatItHasBeenSuccessfullyCreated(): void |
||
37 | |||
38 | /** |
||
39 | * @Then I should be notified that it has been successfully deleted |
||
40 | */ |
||
41 | public function iShouldBeNotifiedThatItHasBeenSuccessfullyDeleted(): void |
||
45 | |||
46 | /** |
||
47 | * @Then I should be notified that it has been successfully edited |
||
48 | */ |
||
49 | public function iShouldBeNotifiedThatItHasBeenSuccessfullyEdited(): void |
||
53 | } |
||
54 |