| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function __construct(array $chronology = []) |
||
| 31 | { |
||
| 32 | $chronology = empty($chronology) ? [ |
||
| 33 | 'call' => null, |
||
| 34 | 'type' => null, |
||
| 35 | 'line' => null, |
||
| 36 | 'time' => null, |
||
| 37 | 'args' => [], |
||
| 38 | 'file' => null, |
||
| 39 | ] : $chronology; |
||
| 40 | |||
| 41 | parent::__construct($chronology, \ArrayObject::ARRAY_AS_PROPS); |
||
| 42 | } |
||
| 43 | } |