Completed
Push — master ( e5ad05...642bf6 )
by Kamil
03:02
created
src/Util/Isolate/Isolate.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -117,9 +117,11 @@
 block discarded – undo
117 117
                 $return = (string) call_user_func_array($data['func'], $data['params']);
118 118
             }
119 119
             catch (Error $ex)
120
-            {}
120
+            {
121
+}
121 122
             catch (Exception $ex)
122
-            {}
123
+            {
124
+}
123 125
 
124 126
             if ($ex !== null || @fwrite($this->socket, $return . "\n") === false)
125 127
             {
Please login to merge, or discard this patch.
src/Util/Factory/FactoryPlugin.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,8 @@  discard block
 block discarded – undo
57 57
      * @param FactoryInterface $factory
58 58
      */
59 59
     protected function register(FactoryInterface $factory)
60
-    {}
60
+    {
61
+}
61 62
 
62 63
     /**
63 64
      * Define how plugin should be unregistered.
@@ -65,7 +66,8 @@  discard block
 block discarded – undo
65 66
      * @param FactoryInterface $factory
66 67
      */
67 68
     protected function unregister(FactoryInterface $factory)
68
-    {}
69
+    {
70
+}
69 71
 
70 72
     /**
71 73
      * @param Error|Exception $ex
Please login to merge, or discard this patch.
src/Util/Factory/SimpleFactoryPlugin.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,8 @@  discard block
 block discarded – undo
57 57
      * @param SimpleFactoryInterface $factory
58 58
      */
59 59
     protected function register(SimpleFactoryInterface $factory)
60
-    {}
60
+    {
61
+}
61 62
 
62 63
     /**
63 64
      * Define how plugin should be unregistered.
@@ -65,7 +66,8 @@  discard block
 block discarded – undo
65 66
      * @param SimpleFactoryInterface $factory
66 67
      */
67 68
     protected function unregister(SimpleFactoryInterface $factory)
68
-    {}
69
+    {
70
+}
69 71
 
70 72
     /**
71 73
      * @param Error|Exception $ex
Please login to merge, or discard this patch.