| Total Complexity | 6 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 29 | final class Crawler implements SingletonInterface |
||
| 30 | { |
||
| 31 | /** |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | private $processFilename; |
||
| 35 | |||
| 36 | 43 | public function __construct(?string $processFilename = null) |
|
| 40 | 43 | } |
|
| 41 | |||
| 42 | 43 | public function setDisabled(bool $disabled = true): void |
|
| 48 | } |
||
| 49 | 43 | } |
|
| 50 | |||
| 51 | 3 | public function isDisabled(): bool |
|
| 56 |