| Conditions | 4 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function __construct( |
||
| 21 | int $width, |
||
| 22 | int $height, |
||
| 23 | Color $background = null, |
||
| 24 | Elements $elements = null, |
||
| 25 | bool $grayScale = false, |
||
| 26 | Orientation $orientation = null |
||
| 27 | ) { |
||
| 28 | $this->width = $width; |
||
| 29 | $this->height = $height; |
||
| 30 | $this->elements = $elements ? : new Elements(); |
||
| 31 | $this->background = $background ? : new Color(255, 255, 255); |
||
| 32 | $this->grayScale = $grayScale; |
||
| 33 | $this->orientation = $orientation ? : new Orientation(Orientation::LANDSCAPE); |
||
| 34 | } |
||
| 66 |