| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class OpenLibraryHandler implements CompleteHandlerInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $isbn; |
||
| 23 | /** |
||
| 24 | * @var LoggerInterface |
||
| 25 | */ |
||
| 26 | protected $logger; |
||
| 27 | |||
| 28 | public function __construct(string $isbn, LoggerInterface $logger) |
||
| 32 | } |
||
| 33 | |||
| 34 | public function handle(): ?OuvrageTemplate |
||
| 45 | } |
||
| 46 | } |