| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class PlanAggregate implements PlanProviderSignature |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @inheritDoc |
||
| 22 | */ |
||
| 23 | public function fetch(UseCaseCommandInterface $command) |
||
|
|
|||
| 24 | { |
||
| 25 | // TODO: Implement fetch() method. |
||
| 26 | } |
||
| 27 | |||
| 28 | public function execute(UseCaseCommandInterface $command) |
||
| 30 | // TODO: Implement execute() method. |
||
| 31 | } |
||
| 33 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.