Passed
Push — develop ( 0630d1...5c806e )
by Mykola
07:05 queued 03:09
created
application/controller/blog/latest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
                 'description' => \voku\helper\UTF8::substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get('configblog_article_description_length')) . '..',
164 164
                 'date_added'  => date($this->language->get('date_format_short'), strtotime($result['date_added'])),
165 165
                 'viewed'      => $result['viewed'],
166
-                'reviews'     => sprintf($this->language->get('text_reviews'), (int) $result['reviews']),
166
+                'reviews'     => sprintf($this->language->get('text_reviews'), (int)$result['reviews']),
167 167
                 'href'        => $this->url->link('blog/article', '&article_id=' . $result['article_id'])
168 168
             );
169 169
         }
Please login to merge, or discard this patch.
engine/library/Db.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
             $this->log['query_total_time'] = 0;
74 74
         }
75 75
 
76
-        $this->log['query_total_time'] = (float) $this->log['query_total_time'] + (float) $exec_time;
76
+        $this->log['query_total_time'] = (float)$this->log['query_total_time'] + (float)$exec_time;
77 77
         $this->log['file']  = $pureFile;
78 78
         $this->log['time']  = $exec_time;
79 79
         $this->log['query'] = \SqlFormatter::format($sql);
Please login to merge, or discard this patch.
engine/config/common.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 22
 
23 23
 // Language (then transferred to /engine/instance.php - Language section)
24
-$_['language_default']     = 'en-gb';
24
+$_['language_default'] = 'en-gb';
25 25
 
26 26
 // Database
27 27
 $_['db_autostart']     = true;
Please login to merge, or discard this patch.