| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 13 | public function __construct( |
|
| 25 | string $rfc, |
||
| 26 | VersionDate $since, |
||
| 27 | bool $sncf = false, |
||
| 28 | bool $sub = false, |
||
| 29 | bool $deleted = false |
||
| 30 | ) { |
||
| 31 | 13 | $this->rfc = $rfc; |
|
| 32 | 13 | $this->since = $since; |
|
| 33 | 13 | $this->sncf = $sncf; |
|
| 34 | 13 | $this->sub = $sub; |
|
| 35 | 13 | $this->deleted = $deleted; |
|
| 36 | 13 | } |
|
| 78 |