Passed
Push — develop ( 9d4761...5965bd )
by Mykola
06:27 queued 02:38
created
administration/language/en-gb/design/custommenu.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
 $_['text_manufacturer']         = 'Manufacturer';
35 35
 $_['text_information']          = 'Information';
36 36
 $_['text_custom']               = 'Custom Link';
37
-$_['text_confirm']				= 'Are you sure?';
37
+$_['text_confirm'] = 'Are you sure?';
38 38
 
39 39
 $_['text_custommenu_title']     = 'Custom Menu Structure';
40
-$_['text_custommenu_description']  = 'Drag each item into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.';
41
-$_['text_sub_item'] 	        = 'sub item';
40
+$_['text_custommenu_description'] = 'Drag each item into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.';
41
+$_['text_sub_item'] = 'sub item';
42 42
 $_['text_custommenu_name'] 	    = 'Name';
43 43
 $_['text_custommenu_link'] 	    = 'Link';
44 44
 
Please login to merge, or discard this patch.
administration/language/en-gb/design/layout.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 $_['text_default']        = 'Default';
35 35
 $_['text_content_top']    = 'Content Top';
36 36
 $_['text_content_bottom'] = 'Content Bottom';
37
-$_['text_column']    = 'column Left';
37
+$_['text_column'] = 'column Left';
38 38
 
39 39
 // column
40 40
 $_['column_name']         = 'Layout Name';
Please login to merge, or discard this patch.
administration/language/en-gb/common/header.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 $_['text_review']            = 'Reviews';
34 34
 $_['text_front']             = 'Store Front';
35 35
 $_['text_logout']            = 'Logout';
36
-$_['text_new']  		     = 'New';
36
+$_['text_new'] = 'New';
37 37
 $_['text_new_category']    	 = 'Category';
38 38
 $_['text_new_customer']      = 'Customer';
39 39
 $_['text_new_download']      = 'Download';
Please login to merge, or discard this patch.
administration/language/en-gb/sale/order.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,4 +141,4 @@
 block discarded – undo
141 141
 $_['error_warning']              = 'Warning: Please check the form carefully for errors!';
142 142
 $_['error_permission']           = 'Warning: You do not have permission to modify orders!';
143 143
 $_['error_action']               = 'Warning: Could not complete this action!';
144
-$_['error_filetype']			 = 'Invalid file type!';
144
+$_['error_filetype'] = 'Invalid file type!';
Please login to merge, or discard this patch.
application/language/en-gb/blog/category.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,13 +36,13 @@
 block discarded – undo
36 36
 $_['text_sort_name']    = 'name';
37 37
 $_['text_sort_rated']   = 'rated';
38 38
 $_['text_sort_viewed']  = 'viewed';
39
-$_['text_views'] 	    = 'Views:';
39
+$_['text_views'] = 'Views:';
40 40
 $_['text_date_asc']     = 'Date (Lowest)';
41 41
 $_['text_date_desc']    = 'Date (Highest)';
42
-$_['text_viewed_asc'] 	= 'Viewed (Lowest)';
42
+$_['text_viewed_asc'] = 'Viewed (Lowest)';
43 43
 $_['text_viewed_desc'] 	= 'Viewed (Highest)';
44
-$_['text_name_asc'] 	= 'Name (A - Z)';
44
+$_['text_name_asc'] = 'Name (A - Z)';
45 45
 $_['text_name_desc'] 	= 'Name (Z - A)';
46 46
 $_['text_default']   	= 'Default';
47 47
 
48
-$_['button_more']       = 'more';
48
+$_['button_more'] = 'more';
Please login to merge, or discard this patch.
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.
application/controller/information/information.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         );
39 39
 
40 40
         if (isset($this->request->get['information_id'])) {
41
-            $information_id = (int) $this->request->get['information_id'];
41
+            $information_id = (int)$this->request->get['information_id'];
42 42
         } else {
43 43
             $information_id = 0;
44 44
         }
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
             $data['breadcrumbs'][] = array(
69 69
                 'text' => $information_info[0]['title'],
70
-                'href' => $this->url->link('information/information', 'information_id=' .  $information_id)
70
+                'href' => $this->url->link('information/information', 'information_id=' . $information_id)
71 71
             );
72 72
 
73 73
             $data['button_continue'] = $this->language->get('button_continue');
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         $this->load->model('catalog/information');
118 118
 
119 119
         if (isset($this->request->get['information_id'])) {
120
-            $information_id = (int) $this->request->get['information_id'];
120
+            $information_id = (int)$this->request->get['information_id'];
121 121
         } else {
122 122
             $information_id = 0;
123 123
         }
Please login to merge, or discard this patch.