| Conditions | 1 |
| Paths | 1 |
| Total Lines | 4 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | public function __construct(ClientFactory $client_factory, Settings $settings) { |
||
| 39 | $this->clientFactory = $client_factory; |
||
| 40 | $this->settings = $settings->get('mongodb')['databases']; |
||
|
1 ignored issue
–
show
|
|||
| 41 | } |
||
| 42 | |||
| 68 |
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.