Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
17 | 1 | public function __construct($formatter = null, $delimiter = ',') |
|
18 | { |
||
19 | 1 | $this->setDelimiter($delimiter); |
|
20 | |||
21 | 1 | $this->stringFormatter = new StringFormatter(); |
|
22 | 1 | $this->stringFormatter->setTrimCharMask($this->stringFormatter->getTrimCharMask() . $this->getDelimiter()); |
|
23 | |||
24 | 1 | parent::__construct($formatter); |
|
25 | 1 | } |
|
26 | |||
64 |