Completed
Push — master ( 9734b3...c60efb )
by Davey
02:14
created
src/Frame.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  *
7 7
  * @package Hyphper
8 8
  */
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace Hyphper;
12 12
 
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 
197 197
         $header = pack(
198 198
             'nCCCN',
199
-            ($this->body_len & 0xFFFF00) >> 8,    // Length spread over top 24 bits
199
+            ($this->body_len & 0xFFFF00) >> 8, // Length spread over top 24 bits
200 200
             $this->body_len & 0x0000FF,
201 201
             $this->type,
202 202
             $flags,
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@
 block discarded – undo
221 221
     /**
222 222
      * @param $flag_byte
223 223
      *
224
-     * @return Flags
224
+     * @return Frame\Flags
225 225
      * @throws Frame\Exception\InvalidFlagException
226 226
      */
227 227
     public function parseFlags(int $flag_byte): Flags
Please login to merge, or discard this patch.
src/Frame/DataFrame.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Hyphper\Frame;
4 4
 
5 5
 use Hyphper\Frame\PaddingInterface;
Please login to merge, or discard this patch.
src/Frame/AltSvcFrame.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Hyphper\Frame;
4 4
 
5 5
 use Hyphper\Frame\PaddingInterface;
Please login to merge, or discard this patch.
src/Frame/Flag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Hyphper\Frame;
4 4
 
5 5
 use Hyphper\Frame\PaddingInterface;
Please login to merge, or discard this patch.
src/Frame/RstStreamFrame.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Hyphper\Frame;
4 4
 
5 5
 use Hyphper\Frame\PaddingInterface;
Please login to merge, or discard this patch.
src/Frame/SettingsFrame.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Hyphper\Frame;
4 4
 
5 5
 use Hyphper\Frame\PaddingInterface;
Please login to merge, or discard this patch.
src/Frame/HeadersFrame.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Hyphper\Frame;
4 4
 
5 5
 use Hyphper\Frame\PaddingInterface;
Please login to merge, or discard this patch.
src/Frame/PaddingInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,6 +3,6 @@
 block discarded – undo
3 3
 
4 4
 interface PaddingInterface
5 5
 {
6
-	const IS_PADDED = 1;
7
-	const IS_NOT_PADDED = 0;
6
+    const IS_PADDED = 1;
7
+    const IS_NOT_PADDED = 0;
8 8
 }
9 9
\ No newline at end of file
Please login to merge, or discard this patch.
src/Frame/GoAwayFrame.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Hyphper\Frame;
4 4
 
5 5
 use Hyphper\Frame\PaddingInterface;
Please login to merge, or discard this patch.