| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | 1 | public function __construct(NormalizerInterface $normalizer = null, string $delimiter = ',') |
|
| 13 | { |
||
| 14 | 1 | $this->setDelimiter($delimiter); |
|
| 15 | |||
| 16 | 1 | $this->stringNormalizer = new StringNormalizer(); |
|
| 17 | 1 | $this->stringNormalizer->setTrimCharMask($this->stringNormalizer->getTrimCharMask() . $this->delimiter); |
|
| 18 | |||
| 19 | 1 | parent::__construct($normalizer); |
|
| 20 | 1 | } |
|
| 53 |