Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
77 | public function dump(array $exclude = []) |
||
78 | { |
||
79 | return array_diff_key( |
||
80 | [ |
||
81 | '_ttl' => $this->ttl, |
||
82 | '_all' => $this->all, |
||
83 | 'enabled' => $this->enabled, |
||
84 | 'dynamic' => $this->dynamic, |
||
85 | 'dynamic_templates' => $this->dynamicTemplates, |
||
86 | 'transform' => $this->transform, |
||
87 | 'dynamic_date_formats' => $this->dynamicDateFormats, |
||
88 | ], |
||
89 | $exclude |
||
90 | ); |
||
91 | } |
||
92 | } |
||
93 |