Completed
Push — master ( b3a060...a91f17 )
by Maik
02:01
created
src/Generics/Streams/Interceptor/StreamInterceptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      * @param bool $closing
24 24
      * @return int
25 25
      */
26
-    public function filter($in, $out, int &$consumed, bool $closing): int;
26
+    public function filter($in, $out, int & $consumed, bool $closing): int;
27 27
 
28 28
     /**
29 29
      * Called when closing the filter
Please login to merge, or discard this patch.
src/Generics/Streams/Interceptor/CachedStreamInterceptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      * {@inheritdoc}
34 34
      * @see \Generics\Streams\Interceptor\StreamInterceptor::filter()
35 35
      */
36
-    public function filter($in, $out, int &$consumed, bool $closing): int
36
+    public function filter($in, $out, int & $consumed, bool $closing): int
37 37
     {
38 38
         if ($closing) {
39 39
             return PSFS_FEED_ME;
Please login to merge, or discard this patch.
src/Generics/Streams/Interceptor/AbstractStreamInterceptor.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,8 @@  discard block
 block discarded – undo
20 20
      * @see \Generics\Streams\Interceptor\StreamInterceptor::onClose()
21 21
      */
22 22
     public function onClose()
23
-    {}
23
+    {
24
+}
24 25
 
25 26
     /**
26 27
      *
@@ -28,5 +29,6 @@  discard block
 block discarded – undo
28 29
      * @see \Generics\Streams\Interceptor\StreamInterceptor::onCreate()
29 30
      */
30 31
     public function onCreate()
31
-    {}
32
+    {
33
+}
32 34
 }
33 35
\ No newline at end of file
Please login to merge, or discard this patch.