| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 64 | private function jsonNonRenderableFields(): iterable |
||
| 65 | { |
||
| 66 | // Recursive relation exclusion |
||
| 67 | yield 'parent'; |
||
| 68 | |||
| 69 | // Dictionary relation exclusion |
||
| 70 | yield 'dictionary'; |
||
| 71 | |||
| 72 | // File information exclusion |
||
| 73 | yield 'offset'; |
||
| 74 | yield 'line'; |
||
| 75 | yield 'column'; |
||
| 76 | |||
| 77 | // Reverse superfluous inheritance information |
||
| 78 | yield 'extendedBy'; |
||
| 79 | } |
||
| 80 | } |
||
| 81 |
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.