| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | class EnvSuppressErrors implements SuppressErrorsInterface |
||
| 17 | { |
||
| 18 | /** @var EnvironmentInterface */ |
||
| 19 | private $environment; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param EnvironmentInterface $environment |
||
| 23 | */ |
||
| 24 | public function __construct(EnvironmentInterface $environment) |
||
| 25 | { |
||
| 26 | $this->environment = $environment; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritdoc |
||
| 31 | */ |
||
| 32 | public function suppressed(): bool |
||
| 35 | } |
||
| 36 | } |
||
| 37 |