Completed
Push — master ( ba407f...6dbf2d )
by Chris
02:29
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/HeaderEncoder.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/MessageEncoder.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/PacketEncoder.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
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
@@ -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.
src/Encoding/Exceptions/InvalidMessageHeaderException.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
@@ -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.
src/Encoding/ProtocolHeaderEncoder.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/FrameEncoder.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.