Passed
Push — master ( 9eb4f9...dc7f93 )
by Alexey
04:46
created
system/Inji/ComposerCmd.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@  discard block
 block discarded – undo
22 22
         }
23 23
     }
24 24
 
25
+    /**
26
+     * @param string $path
27
+     */
25 28
     public static function installComposer($path) {
26 29
         if (file_exists($path . '/composer/bin/composer')) {
27 30
             return true;
@@ -74,6 +77,10 @@  discard block
 block discarded – undo
74 77
         self::command('install', false, $path);
75 78
     }
76 79
 
80
+    /**
81
+     * @param string $command
82
+     * @param string $path
83
+     */
77 84
     public static function command($command, $needOutput = true, $path = null) {
78 85
         ini_set('memory_limit', '2000M');
79 86
         include_once getenv('COMPOSER_HOME') . '/composer/vendor/autoload.php';
Please login to merge, or discard this patch.
system/modules/Db/objects/Mysql/Query.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
     public $params = [];
32 32
     public $distinct = false;
33 33
 
34
+    /**
35
+     * @param  $instance
36
+     */
34 37
     public function __construct($instance = null) {
35 38
         if (!$instance) {
36 39
             $this->curInstance = \App::$cur->db->connection;
Please login to merge, or discard this patch.
system/Inji/BowerCmd.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -58,6 +58,10 @@
 block discarded – undo
58 58
         self::command('install', false, $path);
59 59
     }
60 60
 
61
+    /**
62
+     * @param string $command
63
+     * @param string $path
64
+     */
61 65
     static function command($command, $needOutput = true, $path = null)
62 66
     {
63 67
         include_once 'composer/vendor/autoload.php';
Please login to merge, or discard this patch.