| Total Complexity | 9 |
| Total Lines | 52 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class BnfFromIsbnHandler implements CompleteHandlerInterface |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $isbn; |
||
| 24 | /** |
||
| 25 | * @var string|null |
||
| 26 | */ |
||
| 27 | protected $isbn10; |
||
| 28 | /** |
||
| 29 | * @var LoggerInterface |
||
| 30 | */ |
||
| 31 | protected $logger; |
||
| 32 | |||
| 33 | public function __construct(string $isbn, ?string $isbn10, LoggerInterface $logger) |
||
| 38 | } |
||
| 39 | |||
| 40 | public function handle(): ?OuvrageTemplate |
||
| 69 | } |
||
| 70 | } |