| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 62 | public function dump(array $exclude = []) |
||
| 63 | { |
||
| 64 | return array_diff_key( |
||
| 65 | [ |
||
| 66 | 'enabled' => $this->enabled, |
||
| 67 | '_all' => $this->all, |
||
| 68 | 'dynamic' => $this->dynamic, |
||
| 69 | 'dynamic_templates' => $this->dynamicTemplates, |
||
| 70 | 'transform' => $this->transform, |
||
| 71 | 'dynamic_date_formats' => $this->dynamicDateFormats, |
||
| 72 | ], |
||
| 73 | $exclude |
||
| 74 | ); |
||
| 75 | } |
||
| 76 | } |
||
| 77 |