1 | <?php |
||
13 | abstract class AbstractErrorRender implements ErrorRendererInterface |
||
14 | { |
||
15 | /** @var DOMDocument */ |
||
16 | protected $dom; |
||
17 | |||
18 | /** |
||
19 | * AbstractErrorRender constructor. |
||
20 | * @param DOMDocument $dom |
||
21 | */ |
||
22 | 24 | public function __construct(DOMDocument $dom) |
|
26 | |||
27 | /** |
||
28 | * @param FieldInterface $field |
||
29 | * @return bool |
||
30 | */ |
||
31 | 5 | public function shouldRender(FieldInterface $field) |
|
35 | } |