| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 32 | public function __construct(ServerRequestInterface $request, RouteCollectionContract $routes) |
||
| 33 | { |
||
| 34 | $this->request = $request; |
||
| 35 | $this->routes = $routes; |
||
|
1 ignored issue
–
show
|
|||
| 36 | } |
||
| 37 | |||
| 64 |
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.
To visualize
will produce issues in the first and second line, while this second example
will produce no issues.