Passed
Pull Request — master (#132)
by
unknown
02:31
created
src/Task/CanSwooleTask.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
      */
10 10
     protected function bindSwooleTask()
11 11
     {
12
-        $this->app->singleton('swoole.task', function () {
12
+        $this->app->singleton('swoole.task', function() {
13 13
             return new SwooleTask($this);
14 14
         });
15 15
     }
Please login to merge, or discard this patch.
src/Server/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * This is only for `function not exists` in config/swoole_http.php.
7 7
  */
8
-if (! function_exists('swoole_cpu_num')) {
8
+if (!function_exists('swoole_cpu_num')) {
9 9
     function swoole_cpu_num()
10 10
     {
11 11
         return;
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 }
14 14
 
15 15
 
16
-if (! function_exists('swoole_async_task')) {
16
+if (!function_exists('swoole_async_task')) {
17 17
     /**
18 18
      * Swoole Async task helper.
19 19
      *
Please login to merge, or discard this patch.