1 | <?php |
||
22 | final class Document implements DumperInterface |
||
23 | { |
||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | public $type; |
||
28 | |||
29 | /** |
||
30 | * @var bool |
||
31 | */ |
||
32 | public $enabled; |
||
33 | |||
34 | /** |
||
35 | * @var array |
||
36 | */ |
||
37 | public $all; |
||
38 | |||
39 | /** |
||
40 | * @var string |
||
41 | */ |
||
42 | public $dynamic; |
||
43 | |||
44 | /** |
||
45 | * @var array |
||
46 | */ |
||
47 | public $dynamicTemplates; |
||
48 | |||
49 | /** |
||
50 | * @var array |
||
51 | */ |
||
52 | public $transform; |
||
53 | |||
54 | /** |
||
55 | * @var array |
||
56 | */ |
||
57 | public $dynamicDateFormats; |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function dump(array $exclude = []) |
||
76 | } |
||
77 |