| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 16 | public function __construct( |
|
| 25 | string $germColor, |
||
| 26 | string $germSize, |
||
| 27 | string $germStyle, |
||
| 28 | string $entryColor, |
||
| 29 | string $entryDirection |
||
| 30 | ) { |
||
| 31 | 16 | $this->germColor = $germColor; |
|
| 32 | 16 | $this->germSize = $germSize; |
|
| 33 | 16 | $this->germStyle = $germStyle; |
|
| 34 | 16 | $this->entryColor = $entryColor; |
|
| 35 | 16 | $this->entryDirection = $entryDirection; |
|
| 36 | 16 | } |
|
| 63 |