Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class DeleteEntityForOldExecutionOperation extends AbstractChainOperation |
||
13 | { |
||
14 | /** @var EntityManagerInterface */ |
||
15 | protected EntityManagerInterface $em; |
||
16 | |||
17 | /** |
||
18 | * DeleteEntityForOldExecutionOperation constructor. |
||
19 | * @param EntityManagerInterface $em |
||
20 | */ |
||
21 | public function __construct(EntityManagerInterface $em) |
||
22 | { |
||
23 | $this->em = $em; |
||
24 | } |
||
25 | |||
26 | protected function processData(ItemInterface $item, array &$context) |
||
35 | } |
||
36 | |||
37 | } |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.