Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
39 | 4 | protected function parse(array $caller): void |
|
40 | { |
||
41 | 4 | $this->line = $caller[self::LINE] ?? null; |
|
42 | 4 | $this->file = $caller[self::FILE] ?? null; |
|
43 | 4 | $this->class = $caller[self::CLS] ?? null; |
|
44 | 4 | $this->object = $caller[self::OBJECT] ?? null; |
|
45 | 4 | $this->type = $caller[self::TYPE] ?? null; |
|
46 | 4 | $this->args = $caller[self::ARGS] ?? null; |
|
47 | 4 | } |
|
113 |