Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 3 | public function __construct( |
|
23 | IzettleClientInterface $client, |
||
24 | ?UuidInterface $organizationUuid = null, |
||
25 | ImageBuilderInterface $imageBuilder |
||
26 | ) { |
||
27 | 3 | $this->client = $client; |
|
28 | 3 | $this->organizationUuid = (string) $organizationUuid; |
|
29 | 3 | $this->imageBuilder = $imageBuilder; |
|
30 | 3 | } |
|
31 | |||
42 |