Conditions | 3 |
Paths | 4 |
Total Lines | 15 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | 8 | public function __invoke( |
|
39 | string $indent = null, |
||
40 | string $delimiter = null |
||
41 | ): AbstractSeries { |
||
42 | 8 | if (null !== $delimiter) { |
|
43 | 4 | $this->delimiter = $delimiter; |
|
44 | } |
||
45 | |||
46 | 8 | if (null !== $indent) { |
|
47 | 4 | $this->indent = $indent; |
|
48 | } |
||
49 | |||
50 | 8 | $this->store = []; |
|
51 | |||
52 | 8 | return $this; |
|
53 | } |
||
75 |