Passed
Push — master ( 40bd0a...4b7539 )
by Chris
02:40
created
src/Encoding/FrameAddressEncoder.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\Encoding;
4 4
 
Please login to merge, or discard this patch.
src/Encoding/Exceptions/EncodingException.php 2 patches
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\Encoding\Exceptions;
4 4
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,4 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use DaveRandom\LibLifxLan\Exception;
6 6
 
7
-abstract class EncodingException extends Exception { }
7
+abstract class EncodingException extends Exception
8
+{
9
+}
Please login to merge, or discard this patch.
src/Encoding/Exceptions/InvalidMessageException.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\Encoding\Exceptions;
4 4
 
5
-class InvalidMessageException extends EncodingException { }
5
+class InvalidMessageException extends EncodingException
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\Encoding\Exceptions;
4 4
 
Please login to merge, or discard this patch.
src/Encoding/Exceptions/InvalidMessageHeaderException.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\Encoding\Exceptions;
4 4
 
5
-final class InvalidMessageHeaderException extends InvalidMessageException { }
5
+final class InvalidMessageHeaderException extends InvalidMessageException
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\Encoding\Exceptions;
4 4
 
Please login to merge, or discard this patch.
src/Packet.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;
4 4
 
Please login to merge, or discard this patch.
src/Decoding/HeaderDecoder.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\Decoding;
4 4
 
Please login to merge, or discard this patch.
src/Decoding/Exceptions/DecodingException.php 2 patches
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.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,4 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use DaveRandom\LibLifxLan\Exception;
6 6
 
7
-abstract class DecodingException extends Exception { }
7
+abstract class DecodingException extends Exception
8
+{
9
+}
Please login to merge, or discard this patch.
src/Decoding/Exceptions/MalformedMessagePayloadException.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
-class MalformedMessagePayloadException extends DecodingException { }
5
+class MalformedMessagePayloadException 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/InvalidMessagePayloadLengthException.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 InvalidMessagePayloadLengthException extends MalformedMessagePayloadException { }
5
+final class InvalidMessagePayloadLengthException extends MalformedMessagePayloadException
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.