| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function __construct($name, array $grids, array $queries = []) |
||
| 15 | { |
||
| 16 | parent::__construct($name); |
||
| 17 | |||
| 18 | array_map(function (GridMetadata $grid) { |
||
| 19 | $grid->attachClassMetadata($this); |
||
| 20 | }, $grids); |
||
| 21 | array_map(function (QueryMetadata $query) { |
||
|
|
|||
| 22 | }, $queries); |
||
| 23 | |||
| 24 | $this->grids = $grids; |
||
| 25 | $this->queries = $queries; |
||
| 26 | } |
||
| 27 | |||
| 38 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.