1 | <?php |
||
13 | class URLService implements URLServiceInterface |
||
14 | { |
||
15 | /** @var Symfony\Component\EventDispatcher\EventDispatcherInterface */ |
||
16 | protected $eventDispatcher; |
||
17 | |||
18 | public function __construct(URLServiceInterface $innerService, EventDispatcherInterface $eventDispatcher) |
||
24 | |||
25 | public function createUpdateStruct() |
||
29 | |||
30 | public function findUrls(URLQuery $query) |
||
34 | |||
35 | public function findUsages(URL $url, $offset = 0, $limit = -1) |
||
39 | |||
40 | public function loadById($id) |
||
44 | |||
45 | public function loadByUrl($url) |
||
49 | |||
50 | public function updateUrl(URL $url, URLUpdateStruct $struct) |
||
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.