Completed
Push — master ( 59b3e2...6dd6b9 )
by Andrii
15:38
created
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/debug/Timing.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         if (!empty($this->traces)) {
90 90
             $result .= Html::ul($this->traces, [
91 91
                 'class' => 'trace',
92
-                'item' => function ($trace) {
92
+                'item' => function($trace) {
93 93
                     return "<li>{$trace['file']}({$trace['line']})</li>";
94 94
                 },
95 95
             ]);
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     {
113 113
         $uri = $this->request->getFullUri();
114 114
         $sign = strpos($uri, '?') === false ? '?' : '';
115
-        $newTabUrl = rtrim($uri, '&') . $sign . $this->request->getBody();
115
+        $newTabUrl = rtrim($uri, '&').$sign.$this->request->getBody();
116 116
 
117 117
         return Html::a('to new tab', $newTabUrl, ['target' => '_blank']);
118 118
     }
Please login to merge, or discard this patch.