| 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($normalizer = null, $delimiter = ',') |
|
| 18 | { |
||
| 19 | 1 | $this->setDelimiter($delimiter); |
|
| 20 | |||
| 21 | 1 | $this->stringNormalizer = new StringNormalizer(); |
|
| 22 | 1 | $this->stringNormalizer->setTrimCharMask($this->stringNormalizer->getTrimCharMask() . $this->getDelimiter()); |
|
| 23 | |||
| 24 | 1 | parent::__construct($normalizer); |
|
| 25 | 1 | } |
|
| 26 | |||
| 64 |