1 | <?php |
||
14 | trait TraitContextTrait |
||
15 | { |
||
16 | /** |
||
17 | * @Given the interface :traitName does exist |
||
18 | * |
||
19 | * @param $traitName |
||
20 | * @return bool |
||
21 | */ |
||
22 | public function theTraitDoesExist($traitName) |
||
26 | |||
27 | /** |
||
28 | * @Given the interface :traitName does not exist |
||
29 | * |
||
30 | * @param $traitName |
||
31 | * @return bool |
||
32 | */ |
||
33 | public function theTraitDoesNotExist($traitName) |
||
37 | } |
||
38 | |||
39 |