Completed
Push — master ( c30967...3bd52a )
by Andrii
03:06
created
src/debug/DebugPanel.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -130,6 +130,9 @@
 block discarded – undo
130 130
         return $this->_viewPath;
131 131
     }
132 132
 
133
+    /**
134
+     * @param string $file
135
+     */
133 136
     public function render($file, $data)
134 137
     {
135 138
         return Yii::$app->view->render($file, $data, $this);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         return $this->render('summary', [
52 52
             'url'   => $this->getUrl(),
53 53
             'count' => count($timings),
54
-            'total' => number_format($total * 1000) . ' ms',
54
+            'total' => number_format($total * 1000).' ms',
55 55
         ]);
56 56
     }
57 57
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     public function getViewPath()
126 126
     {
127 127
         if ($this->_viewPath === null) {
128
-            $this->_viewPath = dirname(__DIR__) . '/views/debug';
128
+            $this->_viewPath = dirname(__DIR__).'/views/debug';
129 129
         }
130 130
         return $this->_viewPath;
131 131
     }
Please login to merge, or discard this patch.
src/config/common.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     ]),
30 30
     'container' => [
31 31
         'singletons' => [
32
-            \hiqdev\hiart\ConnectionInterface::class => function () {
32
+            \hiqdev\hiart\ConnectionInterface::class => function() {
33 33
                 return Yii::$app->get(Yii::$app->params['hiart.dbname']);
34 34
             },
35 35
         ],
Please login to merge, or discard this patch.
src/AbstractQueryBuilder.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 
155 155
                 return $this->$method($operator, $condition);
156 156
             } else {
157
-                throw new InvalidParamException('Found unknown operator in query: ' . $operator);
157
+                throw new InvalidParamException('Found unknown operator in query: '.$operator);
158 158
             }
159 159
         } else {
160 160
             return $this->buildHashCondition($condition);
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
         foreach ($condition as $attribute => $value) {
168 168
             if (is_array($value)) { // IN condition
169 169
                 // $parts[] = [$attribute.'s' => join(',',$value)];
170
-                $parts[$attribute . 's'] = implode(',', $value);
170
+                $parts[$attribute.'s'] = implode(',', $value);
171 171
             } else {
172 172
                 $parts[$attribute] = $value;
173 173
             }
@@ -178,12 +178,12 @@  discard block
 block discarded – undo
178 178
 
179 179
     protected function buildLikeCondition($operator, $operands)
180 180
     {
181
-        return [$operands[0] . '_like' => $operands[1]];
181
+        return [$operands[0].'_like' => $operands[1]];
182 182
     }
183 183
 
184 184
     protected function buildIlikeCondition($operator, $operands)
185 185
     {
186
-        return [$operands[0] . '_ilike' => $operands[1]];
186
+        return [$operands[0].'_ilike' => $operands[1]];
187 187
     }
188 188
 
189 189
     protected function buildCompareCondition($operator, $operands)
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
             throw new InvalidParamException("Operator '$operator' requires three operands.");
193 193
         }
194 194
 
195
-        return [$operands[0] . '_' . $operator => $operands[1]];
195
+        return [$operands[0].'_'.$operator => $operands[1]];
196 196
     }
197 197
 
198 198
     protected function buildAndCondition($operator, $operands)
@@ -239,9 +239,9 @@  discard block
 block discarded – undo
239 239
         }
240 240
 
241 241
         if ($not) {
242
-            $key = $column . '_ni'; // not in
242
+            $key = $column.'_ni'; // not in
243 243
         } else {
244
-            $key = $column . '_in';
244
+            $key = $column.'_in';
245 245
         }
246 246
         return [$key => $values];
247 247
     }
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
     {
263 263
         $key = array_shift($operands);
264 264
 
265
-        return [$key . '_' . $operator => reset($operands)];
265
+        return [$key.'_'.$operator => reset($operands)];
266 266
     }
267 267
 
268 268
     protected function buildCompositeInCondition($operator, $columns, $values)
Please login to merge, or discard this patch.
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -137,6 +137,10 @@
 block discarded – undo
137 137
         return $this->createRequest($query);
138 138
     }
139 139
 
140
+    /**
141
+     * @param string $action
142
+     * @param string $table
143
+     */
140 144
     public function createQuery($action, $table, array $options = [])
141 145
     {
142 146
         $class = $this->db->queryClass;
Please login to merge, or discard this patch.
src/AbstractRequest.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     public function createFullUri()
81 81
     {
82
-        return ($this->isFullUri($this->uri) ? '' : $this->getDb()->getBaseUri()) . $this->uri;
82
+        return ($this->isFullUri($this->uri) ? '' : $this->getDb()->getBaseUri()).$this->uri;
83 83
     }
84 84
 
85 85
     public function isFullUri($uri)
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
             $params = http_build_query($params, '', '&');
163 163
         }
164 164
         if (!empty($params)) {
165
-            $this->uri .= '?' . $params;
165
+            $this->uri .= '?'.$params;
166 166
         }
167 167
     }
168 168
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@
 block discarded – undo
87 87
         return ($this->isFullUri($this->uri) ? '' : $this->getDb()->getBaseUri()) . $this->uri;
88 88
     }
89 89
 
90
+    /**
91
+     * @param string $uri
92
+     */
90 93
     public function isFullUri($uri)
91 94
     {
92 95
         return preg_match('/^https?:\\/\\//i', $uri);
Please login to merge, or discard this patch.
src/rest/QueryBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,10 +24,10 @@
 block discarded – undo
24 24
     {
25 25
         $auth = $this->db->getAuth();
26 26
         if (isset($auth['headerToken'])) {
27
-            $this->authHeaders['Authorization'] = 'token ' . $auth['headerToken'];
27
+            $this->authHeaders['Authorization'] = 'token '.$auth['headerToken'];
28 28
         }
29 29
         if (isset($auth['headerBearer'])) {
30
-            $this->authHeaders['Authorization'] = 'Bearer ' . $auth['headerBearer'];
30
+            $this->authHeaders['Authorization'] = 'Bearer '.$auth['headerBearer'];
31 31
         }
32 32
     }
33 33
 
Please login to merge, or discard this patch.
src/curl/Response.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @return mixed|string
66
+     * @return string
67 67
      */
68 68
     public function getRawData()
69 69
     {
Please login to merge, or discard this patch.
src/ActiveRecord.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -207,6 +207,9 @@
 block discarded – undo
207 207
         return $result === false ? false : true;
208 208
     }
209 209
 
210
+    /**
211
+     * @param string $defaultScenario
212
+     */
210 213
     public function batchQuery($defaultScenario, $data = [], array $options = [])
211 214
     {
212 215
         $options['batch'] = true;
Please login to merge, or discard this patch.
src/AbstractConnection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     protected $_errorChecker;
79 79
 
80 80
     /**
81
-     * @param null $name
81
+     * @param string $name
82 82
      * @return ConnectionInterface|AbstractConnection
83 83
      */
84 84
     public static function getDb($name = null, $class = ConnectionInterface::class)
Please login to merge, or discard this patch.
src/debug/Timing.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
         if (!empty($this->traces)) {
93 93
             $result .= Html::ul($this->traces, [
94 94
                 'class' => 'trace',
95
-                'item' => function ($trace) {
96
-                    return '<li>' . $this->panel->getTraceLine($trace) . '</li>';
95
+                'item' => function($trace) {
96
+                    return '<li>'.$this->panel->getTraceLine($trace).'</li>';
97 97
                 },
98 98
             ]);
99 99
         }
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     {
116 116
         $uri = rtrim($this->request->getFullUri(), '?');
117 117
         $sign = strpos($uri, '?') === false ? '?' : '&';
118
-        $newTabUrl = rtrim($uri, '&') . $sign . $this->request->getBody();
118
+        $newTabUrl = rtrim($uri, '&').$sign.$this->request->getBody();
119 119
 
120 120
         return Html::a('to new tab', $newTabUrl, ['target' => '_blank']);
121 121
     }
Please login to merge, or discard this patch.