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