Completed
Push — master ( 45e167...f96975 )
by Marco
02:56 queued 46s
created
src/Dont/DontDeserialise.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Dont;
6 6
 
Please login to merge, or discard this patch.
src/Dont/Exception/TypeError.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Dont;
6 6
 
Please login to merge, or discard this patch.
src/Dont/Exception/ExceptionInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Dont;
6 6
 
Please login to merge, or discard this patch.
src/Dont/Exception/NonDeserialisableObject.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Dont\Exception;
6 6
 
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     public static function fromAttemptedSerialisation($object) : self
19 19
     {
20
-        if (! is_object($object)) {
20
+        if (!is_object($object)) {
21 21
             throw TypeError::fromNonObject($object);
22 22
         }
23 23
 
Please login to merge, or discard this patch.