Completed
Pull Request — master (#1)
by Marco
05:28 queued 01:12
created
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\Exception;
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
 
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
     public static function fromAttemptedDeSerialisation($object) : self
12 12
     {
13
-        if (! is_object($object)) {
13
+        if (!is_object($object)) {
14 14
             throw TypeError::fromNonObject($object);
15 15
         }
16 16
 
Please login to merge, or discard this patch.
src/Dont/Exception/NonSerialisableObject.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.
src/Dont/DontSerialise.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.