| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1.125 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | 1 | public function addJsonResponseMacros() |
|
| 22 | { |
||
| 23 | $trait = $this; |
||
| 24 | |||
| 25 | TestResponse::macro('seeJsonStructureEquals', function ($structure) use ($trait) { |
||
| 26 | 1 | return $trait->seeJsonStructureEquals($structure, $this->decodeResponseJson()); |
|
|
1 ignored issue
–
show
|
|||
| 27 | }); |
||
| 28 | |||
| 29 | 1 | TestResponse::macro('jsonResponse', function ($key = null) use ($trait) { |
|
| 30 | 1 | return $trait->jsonResponse($key, $this->decodeResponseJson()); |
|
|
1 ignored issue
–
show
|
|||
| 31 | }); |
||
| 32 | } |
||
| 33 | |||
| 68 |
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
Idableprovides a methodequalsIdthat 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.