1 | <?php |
||
5 | trait loadTasks |
||
6 | { |
||
7 | /** |
||
8 | * @param null|string $pathToCodeception |
||
9 | * |
||
10 | * @return \Robo\Task\Testing\Codecept|\Robo\Collection\CollectionBuilder |
||
11 | */ |
||
12 | protected function taskCodecept($pathToCodeception = null) |
||
16 | |||
17 | /** |
||
18 | * @param null|string $pathToPhpUnit |
||
19 | * |
||
20 | * @return \Robo\Task\Testing\PHPUnit|\Robo\Collection\CollectionBuilder |
||
21 | */ |
||
22 | protected function taskPhpUnit($pathToPhpUnit = null) |
||
26 | |||
27 | /** |
||
28 | * @param null|string $pathToPhpspec |
||
29 | * |
||
30 | * @return \Robo\Task\Testing\Phpspec|\Robo\Collection\CollectionBuilder |
||
31 | */ |
||
32 | protected function taskPhpspec($pathToPhpspec = null) |
||
36 | |||
37 | /** |
||
38 | * @param null|string $pathToAtoum |
||
39 | * |
||
40 | * @return \Robo\Task\Testing\Atoum|\Robo\Collection\CollectionBuilder |
||
41 | */ |
||
42 | protected function taskAtoum($pathToAtoum = null) |
||
46 | |||
47 | /** |
||
48 | * @param null|string $pathToBehat |
||
49 | * |
||
50 | * @return \Robo\Task\Testing\Behat|\Robo\Collection\CollectionBuilder |
||
51 | */ |
||
52 | protected function taskBehat($pathToBehat = null) |
||
56 | } |
||
57 |
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.