1 | <?php |
||
16 | trait PromptContextTrait |
||
17 | { |
||
18 | /** |
||
19 | * @Given I get prompted and answer yes |
||
20 | */ |
||
21 | public function iGetPromptedAndAnswerYes() |
||
32 | |||
33 | /** |
||
34 | * @Given I get prompted and answer no |
||
35 | */ |
||
36 | public function iGetPromptedAndAnswerNo() |
||
47 | |||
48 | /** |
||
49 | * @Then I get prompted |
||
50 | */ |
||
51 | public function iGetPrompted() |
||
60 | |||
61 | /** |
||
62 | * @Then I do not get prompted |
||
63 | */ |
||
64 | public function iDoNotGetPrompted() |
||
73 | } |
||
74 | |||
75 |
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idable
provides a methodequalsId
that in turn relies on the methodgetId()
. If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()
as an abstract method to the trait will make sure it is available.