Completed
Push — master ( 7ee34d...c3ef57 )
by Oleg
03:16
created
micro/base/Autoload.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
         static::$aliases[strtolower($alias)][] = $realPath;
37 37
     }
38 38
 
39
+    /**
40
+     * @param string $alias
41
+     */
39 42
     public static function getAlias($alias)
40 43
     {
41 44
         $alias = strtolower($alias);
Please login to merge, or discard this patch.
micro/Micro.php 2 patches
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     /**
87 87
      * Default config path
88 88
      *
89
-     * @return string
89
+     * @return boolean
90 90
      */
91 91
     protected function getConfig()
92 92
     {
@@ -99,7 +99,6 @@  discard block
 block discarded – undo
99 99
      * @access public
100 100
      *
101 101
      * @param IRequest $request Request object
102
-     * @param string $configPath Path to config file
103 102
      *
104 103
      * @return Response
105 104
      * @throws \Exception
@@ -147,7 +146,6 @@  discard block
 block discarded – undo
147 146
      *
148 147
      * @access public
149 148
      *
150
-     * @param string $configPath Path to configure Container
151 149
      *
152 150
      * @return void
153 151
      */
@@ -195,7 +193,6 @@  discard block
 block discarded – undo
195 193
      *
196 194
      * @access public
197 195
      *
198
-     * @param bool|false $isCli CLI or Web
199 196
      *
200 197
      * @return ConsoleResolver|HMVCResolver
201 198
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
 
62 62
         $this->loaded = false;
63 63
 
64
-          if ($this->debug) {
64
+            if ($this->debug) {
65 65
             $this->startTime = microtime(true);
66 66
         }
67 67
     }
Please login to merge, or discard this patch.