@@ -2,4 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Decoding\Exceptions; |
4 | 4 | |
5 | -final class InvalidReadException extends DecodingException { } |
|
5 | +final class InvalidReadException extends DecodingException |
|
6 | +{ |
|
7 | +} |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Decoding\Exceptions; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Header; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Messages\Light\Commands; |
4 | 4 |
@@ -19,7 +19,7 @@ |
||
19 | 19 | public function __construct(int $brightness) |
20 | 20 | { |
21 | 21 | if ($brightness < 0 || $brightness > 65535) { |
22 | - throw new InvalidValueException("Brightness {$brightness} outside allowable range of 0 - 65535"); |
|
22 | + throw new InvalidValueException("brightness {$brightness} outside allowable range of 0 - 65535"); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | $this->brightness = $brightness; |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Messages\Light\Commands; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Messages\Light\Responses; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Messages\Light\Requests; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Messages; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Messages\Device\Commands; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace DaveRandom\LibLifxLan\Messages\Device\Responses; |
4 | 4 |