| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class Storage { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Storage constructor. |
||
| 17 | * |
||
| 18 | * @param GlobalContainer $gc |
||
| 19 | */ |
||
| 20 | public function __construct(GlobalContainer $gc) { |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param TextRecordDescription $recordDescription |
||
| 25 | * @param string|int $id |
||
| 26 | * |
||
| 27 | * @return array|null |
||
| 28 | */ |
||
| 29 | public function loadById($recordDescription, $id) { |
||
| 39 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.