| Conditions | 1 |
| Paths | 1 |
| Total Lines | 23 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function __construct( |
||
| 33 | $version, |
||
| 34 | $segmentNumber, |
||
| 35 | $ktv, |
||
| 36 | $allAccounts, |
||
| 37 | \DateTime $from, |
||
| 38 | \DateTime $to, |
||
| 39 | $touchdown = null |
||
| 40 | ) { |
||
| 41 | parent::__construct( |
||
| 42 | static::NAME, |
||
| 43 | $segmentNumber, |
||
| 44 | $version, |
||
| 45 | array( |
||
| 46 | $ktv, |
||
| 47 | $allAccounts, |
||
| 48 | new Dat($from), |
||
| 49 | new Dat($to), |
||
| 50 | null, |
||
| 51 | $touchdown |
||
| 52 | ) |
||
| 53 | ); |
||
| 54 | } |
||
| 55 | |||
| 64 |