Passed
Push — dev ( ffebda...431b15 )
by 世昌
02:21
created
suda/src/application/loader/ApplicationLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     public function loadVendorIfExist()
86 86
     {
87
-        $vendorAutoload = $this->application->getPath() . '/vendor/autoload.php';
87
+        $vendorAutoload = $this->application->getPath().'/vendor/autoload.php';
88 88
         if (FileSystem::exist($vendorAutoload)) {
89 89
             Loader::requireOnce($vendorAutoload);
90 90
         }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
     protected function registerModule()
123 123
     {
124
-        $extractPath = $this->application->getDataPath() . '/extract-module';
124
+        $extractPath = $this->application->getDataPath().'/extract-module';
125 125
         FileSystem::make($extractPath);
126 126
         foreach ($this->application->getModulePaths() as $path) {
127 127
             $this->registerModuleFrom($path, $extractPath);
Please login to merge, or discard this patch.
suda/src/framework/debug/DebugObject.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,13 +68,13 @@
 block discarded – undo
68 68
             );
69 69
             $exported = [];
70 70
             foreach ($props as $value) {
71
-                $name = dechex($value->getModifiers()) . '$' . $value->getName();
71
+                $name = dechex($value->getModifiers()).'$'.$value->getName();
72 72
                 $value->setAccessible(true);
73 73
                 $exported[$name] = new DebugObject($value->getValue($object), $this->context);
74 74
             }
75 75
             return $exported;
76 76
         } catch (\ReflectionException $e) {
77
-            return 'Err:' . $e->getMessage();
77
+            return 'Err:'.$e->getMessage();
78 78
         }
79 79
     }
80 80
 
Please login to merge, or discard this patch.