1 | <?php |
||
19 | trait TestUtilityTrait |
||
20 | { |
||
21 | /** |
||
22 | * Will create a stub with several methods and defined return values. |
||
23 | * definition: |
||
24 | * [ |
||
25 | * 'myMethod' => 'somevalue', |
||
26 | * 'myOtherMethod' => $callback, |
||
27 | * 'anotherMethod' => function ($x) use ($y) {}, |
||
28 | * ] |
||
29 | * |
||
30 | * @param string $class |
||
31 | * @param array $methods |
||
32 | * @param string $className classname for mock object |
||
33 | * @param bool $forceMethods |
||
34 | 2 | * @return \PHPUnit_Framework_MockObject_MockObject |
|
35 | */ |
||
36 | 2 | protected function stub( |
|
64 | } |
||
65 |
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.