1 | <?php |
||
13 | class TrashService implements TrashServiceInterface |
||
14 | { |
||
15 | /** @var Symfony\Component\EventDispatcher\EventDispatcherInterface */ |
||
16 | protected $eventDispatcher; |
||
17 | |||
18 | public function __construct(TrashServiceInterface $innerService, EventDispatcherInterface $eventDispatcher) |
||
24 | |||
25 | public function loadTrashItem($trashItemId) |
||
29 | |||
30 | public function trash(Location $location) |
||
34 | |||
35 | public function recover(TrashItem $trashItem, Location $newParentLocation = null) |
||
39 | |||
40 | public function emptyTrash() |
||
44 | |||
45 | public function deleteTrashItem(TrashItem $trashItem) |
||
49 | |||
50 | public function findTrashItems(Query $query) |
||
54 | } |
||
55 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.