Passed
Push — master ( fc6d9e...c0886a )
by Chris
02:49
created
src/Decoding/Exceptions/InvalidReadException.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,4 +2,6 @@
 block discarded – undo
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
+}
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Decoding\Exceptions;
4 4
 
Please login to merge, or discard this patch.
src/Decoding/Exceptions/UnknownMessageTypeException.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,4 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Decoding\Exceptions;
4 4
 
5
-final class UnknownMessageTypeException extends DecodingException { }
5
+final class UnknownMessageTypeException extends DecodingException
6
+{
7
+}
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Decoding\Exceptions;
4 4
 
Please login to merge, or discard this patch.
src/Decoding/FrameDecoder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Decoding;
4 4
 
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
         $size = $parts['size'];
19 19
         $source = $parts['source'];
20 20
 
21
-        $origin        =       ($parts['protocol'] & 0xC000) >> 14;
21
+        $origin        = ($parts['protocol'] & 0xC000) >> 14;
22 22
         $isTagged      = (bool)($parts['protocol'] & 0x2000);
23 23
         $isAddressable = (bool)($parts['protocol'] & 0x1000);
24
-        $protocol      =       ($parts['protocol'] & 0x0FFF);
24
+        $protocol      = ($parts['protocol'] & 0x0FFF);
25 25
 
26 26
         return new Frame($size, $origin, $isTagged, $isAddressable, $protocol, $source);
27 27
     }
Please login to merge, or discard this patch.
src/Header/Header.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Header;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Light/Commands/SetPower.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Commands;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Light/Commands/SetInfrared.php 2 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Commands;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Light/Responses/StatePower.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Responses;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Light/Requests/GetInfrared.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Requests;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages;
4 4
 
Please login to merge, or discard this patch.