| 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 |
||
| 52 | 9 | public function __invoke( |
|
| 53 | string $indent = null, |
||
| 54 | string $delimiter = null |
||
| 55 | ): AbstractSeries { |
||
| 56 | 9 | if (null !== $delimiter) { |
|
| 57 | 3 | $this->delimiter = $delimiter; |
|
| 58 | } |
||
| 59 | |||
| 60 | 9 | if (null !== $indent) { |
|
| 61 | 3 | $this->indent = $indent; |
|
| 62 | } |
||
| 63 | |||
| 64 | 9 | $this->store = []; |
|
| 65 | |||
| 66 | 9 | return $this; |
|
| 67 | } |
||
| 90 |