Passed
Push — master ( ae009e...1bc377 )
by 世昌
02:06
created
nebula/src/component/loader/LoaderAwareTrait.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,11 +5,11 @@
 block discarded – undo
5 5
 
6 6
 trait LoaderAwareTrait
7 7
 {
8
-     /**
9
-     * 加载器
10
-     *
11
-     * @var Loader
12
-     */
8
+        /**
9
+         * 加载器
10
+         *
11
+         * @var Loader
12
+         */
13 13
     protected $loader;
14 14
 
15 15
     
Please login to merge, or discard this patch.
nebula/src/component/request/attribute/SchemeAttribute.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,9 +53,9 @@
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-      * Get 服务器属性
57
-      *
58
-      * @return  array
59
-      */
56
+     * Get 服务器属性
57
+     *
58
+     * @return  array
59
+     */
60 60
     abstract public function getServer();
61 61
 }
Please login to merge, or discard this patch.
nebula/src/application/filesystem/FileSystem.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
     }
20 20
 
21 21
     use FileHelper  {
22
-       delete as protected deleteFile;
23
-       FileHelper::copy insteadof DirectoryHelper;
24
-       FileHelper::move insteadof DirectoryHelper;
22
+        delete as protected deleteFile;
23
+        FileHelper::copy insteadof DirectoryHelper;
24
+        FileHelper::move insteadof DirectoryHelper;
25 25
     }
26 26
 
27 27
 
Please login to merge, or discard this patch.
nebula/src/application/Application.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -162,8 +162,8 @@
 block discarded – undo
162 162
      */
163 163
     protected function registerModuleManager()
164 164
     {
165
-       $this->manager = new Manager($this->getContext());
166
-       $this->manager->registerModule();
165
+        $this->manager = new Manager($this->getContext());
166
+        $this->manager->registerModule();
167 167
     }
168 168
 
169 169
     /**
Please login to merge, or discard this patch.
nebula/src/application/module/Manager.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -148,8 +148,8 @@
 block discarded – undo
148 148
             $this->module[$module->getFullName()] = $module;
149 149
             $this->getContext()->getDebugger()->info('register module {name} at {path}', ['name'=>$module->getFullName(), 'path'=>$module->getPath()]);
150 150
         }
151
-       $this->buildLoadingOrder('alive', 'loadingOrder');
152
-       $this->buildLoadingOrder('reachable', 'routeLoadingOrder');
151
+        $this->buildLoadingOrder('alive', 'loadingOrder');
152
+        $this->buildLoadingOrder('reachable', 'routeLoadingOrder');
153 153
     }
154 154
     
155 155
     /**
Please login to merge, or discard this patch.
nebula/src/application/Route.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     public function loadFromModule(Manager $manager) {
50 50
         $groups =  $this->applicaton->getConfig()->get('app.active',['default']);
51 51
         foreach ($groups as $group) {
52
-           $manager->loadRoute($group, $this);
52
+            $manager->loadRoute($group, $this);
53 53
         }
54 54
     }
55 55
 
Please login to merge, or discard this patch.