Passed
Push — develop ( 51ae01...d68d1b )
by nguereza
01:51
created
src/Helper/CborDecoder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public static function decode($data)
59 59
     {
60
-        if (! $data instanceof ByteBuffer) {
60
+        if (!$data instanceof ByteBuffer) {
61 61
             $data = new ByteBuffer($data);
62 62
         }
63 63
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      */
83 83
     public static function decodeInPlace($data, int $startoffset, ?int $endOffset = null)
84 84
     {
85
-        if (! $data instanceof ByteBuffer) {
85
+        if (!$data instanceof ByteBuffer) {
86 86
             $data = new ByteBuffer($data);
87 87
         }
88 88
 
Please login to merge, or discard this patch.