@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace LauLamanApps\IzettleApi\API; |
6 | 6 | |
@@ -22,11 +22,11 @@ discard block |
||
22 | 22 | |
23 | 23 | public function getSmallImageUrl(): string |
24 | 24 | { |
25 | - return self::BASE_URL . 'L/' . $this->getFilename(); |
|
25 | + return self::BASE_URL.'L/'.$this->getFilename(); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | public function getLargeImageUrl(): string |
29 | 29 | { |
30 | - return self::BASE_URL . 'o/' . $this->getFilename(); |
|
30 | + return self::BASE_URL.'o/'.$this->getFilename(); |
|
31 | 31 | } |
32 | 32 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace LauLamanApps\IzettleApi\API\Purchase; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace LauLamanApps\IzettleApi\API\Purchase\Exception; |
6 | 6 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace LauLamanApps\IzettleApi\API\Purchase; |
6 | 6 | |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | public function removePurchase(Purchase $purchase): void |
43 | 43 | { |
44 | - unset($this->purchases[(string)$purchase->getUuid()]); |
|
44 | + unset($this->purchases[(string) $purchase->getUuid()]); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | public function getPurchases(): array |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace LauLamanApps\IzettleApi\API\Purchase\Payment; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace LauLamanApps\IzettleApi\API\Finance; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace LauLamanApps\IzettleApi\API\Finance\Enum; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace LauLamanApps\IzettleApi\API\Product; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace LauLamanApps\IzettleApi\Client\Universal; |
6 | 6 |