| 1 | <?php  | 
            ||
| 12 | class BookmarkService implements BookmarkServiceInterface  | 
            ||
| 13 | { | 
            ||
| 14 | /** @var Symfony\Component\EventDispatcher\EventDispatcherInterface */  | 
            ||
| 15 | protected $eventDispatcher;  | 
            ||
| 16 | |||
| 17 | public function __construct(BookmarkServiceInterface $innerService, EventDispatcherInterface $eventDispatcher)  | 
            ||
| 23 | |||
| 24 | public function createBookmark(Location $location): void  | 
            ||
| 28 | |||
| 29 | public function deleteBookmark(Location $location): void  | 
            ||
| 33 | |||
| 34 | public function loadBookmarks(int $offset = 0, int $limit = 25): BookmarkList  | 
            ||
| 38 | |||
| 39 | public function isBookmarked(Location $location): bool  | 
            ||
| 43 | }  | 
            ||
| 44 | 
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.