| Conditions | 3 |
| Paths | 2 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function createBreadcrumb($route) |
||
| 18 | { |
||
| 19 | $breadcrumbs = []; |
||
| 20 | |||
| 21 | while ($route !== "./" && $route !== "/") { |
||
| 22 | $routeIndex = $this->mapRoute2IndexKey($route); |
||
|
|
|||
| 23 | $item["url"] = $route; |
||
| 24 | $item["text"] = $this->getBreadcrumbTitle($this->index[$routeIndex]["file"]); |
||
| 25 | $breadcrumbs[] = $item; |
||
| 26 | $route = dirname($route) . "/"; |
||
| 27 | } |
||
| 28 | |||
| 29 | krsort($breadcrumbs); |
||
| 30 | return $breadcrumbs; |
||
| 31 | } |
||
| 32 | |||
| 53 |
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.