Passed
Push — master ( 8f5376...4142cd )
by Mihail
12:41
created
Apps/View/Admin/default/widget/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     $route = $widget->sys_name . '/index';
27 27
     $icoStatus = null;
28 28
     $actions = $this->render('macro/widget_actions', ['controller' => $widget->sys_name]);
29
-    if ((int)$widget->disabled !== 0) {
29
+    if ((int) $widget->disabled !== 0) {
30 30
         $icoStatus = ' <i class="fa fa-pause" style="color: #ff0000;"></i>';
31 31
     } elseif ($widget->checkVersion() !== true) {
32 32
         $icoStatus = ' <i class="fa fa-exclamation" style="color: #ffbd26;"></i>';
Please login to merge, or discard this patch.
Apps/Model/Admin/Application/FormTurn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     {
13 13
         $status = $object->disabled;
14 14
 
15
-        $object->disabled = (int)!$status; // magic inside: bool to int and reverse - 0 => 1, 1 => 0
15
+        $object->disabled = (int) !$status; // magic inside: bool to int and reverse - 0 => 1, 1 => 0
16 16
         $object->save();
17 17
     }
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Apps/View/Front/default/content/list.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
 $catConfigs = [];
17 17
 foreach ($model->categoryData['configs'] as $key=>$value) {
18
-    $catConfigs[$key] = (int)$value === 1;
18
+    $catConfigs[$key] = (int) $value === 1;
19 19
 }
20 20
 
21 21
 $catMeta = [
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             </div>
103 103
         </div>
104 104
         <div class="meta">
105
-            <?php if ((int)$configs['keywordsAsTags'] === 1 && $item['tags'] !== null && Obj::isArray($item['tags'])): ?>
105
+            <?php if ((int) $configs['keywordsAsTags'] === 1 && $item['tags'] !== null && Obj::isArray($item['tags'])): ?>
106 106
             <span><i class="fa fa-tags hidden-xs"></i>
107 107
                 <?php
108 108
                     foreach ($item['tags'] as $tag) {
Please login to merge, or discard this patch.
Apps/View/Admin/default/widget/turn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             [['text' => __('Name')], ['text' => $widget->getLocaleName()]],
32 32
             [['text' => __('System name')], ['text' => $widget->sys_name]],
33 33
             [['text' => __('Last update')], ['text' => Date::convertToDatetime($widget->updated_at, DATE::FORMAT_TO_SECONDS)]],
34
-            [['text' => __('Status')], ['text' => ((int)$widget->disabled === 0) ? 'On' : 'Off'], 'property' => ['class' =>  ((int)$widget->disabled === 0) ? 'alert-success' : 'alert-danger']]
34
+            [['text' => __('Status')], ['text' => ((int) $widget->disabled === 0) ? 'On' : 'Off'], 'property' => ['class' =>  ((int) $widget->disabled === 0) ? 'alert-success' : 'alert-danger']]
35 35
         ]
36 36
     ]
37 37
 ]); ?>
Please login to merge, or discard this patch.
Apps/Controller/Admin/Widget.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         $search = \Apps\ActiveRecord\App::getItem('app', $controller);
72 72
 
73 73
         // check what we got
74
-        if ($search === null || (int)$search->id < 1) {
74
+        if ($search === null || (int) $search->id < 1) {
75 75
             throw new ForbiddenException('App is not founded');
76 76
         }
77 77
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         $search = \Apps\ActiveRecord\App::where('sys_name', '=', $controllerName)->where('type', '=', 'app')->first();
98 98
 
99
-        if ($search === null || (int)$search->id < 1) {
99
+        if ($search === null || (int) $search->id < 1) {
100 100
             throw new ForbiddenException('App is not founded');
101 101
         }
102 102
 
Please login to merge, or discard this patch.
Apps/ActiveRecord/App.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
         $scriptVersion = $this->getScriptVersion();
126 126
 
127
-        return $scriptVersion === (float)$this->version;
127
+        return $scriptVersion === (float) $this->version;
128 128
     }
129 129
 
130 130
     /**
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
             return false;
143 143
         }
144 144
 
145
-        return (float)constant($class . '::VERSION');
145
+        return (float) constant($class . '::VERSION');
146 146
     }
147 147
 
148 148
 }
149 149
\ No newline at end of file
Please login to merge, or discard this patch.
Apps/View/Admin/default/comments/_tabs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,4 +9,4 @@
 block discarded – undo
9 9
         ['type' => 'link', 'text' => __('Group management'), 'link' => ['user/grouplist']],
10 10
         ['type' => 'link', 'text' => __('Settings'), 'link' => ['user/settings']]
11 11
     ]
12
-]);?>
13 12
\ No newline at end of file
13
+]); ?>
14 14
\ No newline at end of file
Please login to merge, or discard this patch.
Apps/Controller/Front/Content.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
     {
47 47
         $path = App::$Request->getPathWithoutControllerAction();
48 48
         $configs = $this->getConfigs();
49
-        $page = (int)App::$Request->query->get('page');
50
-        $itemCount = (int)$configs['itemPerCategory'];
49
+        $page = (int) App::$Request->query->get('page');
50
+        $itemCount = (int) $configs['itemPerCategory'];
51 51
 
52 52
         // build special model with content list and category list information
53 53
         $model = new EntityCategoryList($path, $configs, $page);
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         $model = new EntityContentRead($categoryRecord, $contentRecord->first());
117 117
         $search = null;
118 118
         // check if similar search is enabled for item category
119
-        if ((int)$model->getCategory()->getProperty('showSimilar') === 1 && $trash === false) {
119
+        if ((int) $model->getCategory()->getProperty('showSimilar') === 1 && $trash === false) {
120 120
             $search = new EntityContentSearch($model->title, $model->id);
121 121
         }
122 122
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
     {
140 140
         $configs = $this->getConfigs();
141 141
         // check if tags is enabled
142
-        if ((int)$configs['keywordsAsTags'] !== 1) {
142
+        if ((int) $configs['keywordsAsTags'] !== 1) {
143 143
             throw new NotFoundException(__('Tag system is disabled'));
144 144
         }
145 145
 
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
         $this->layout = null;
182 182
 
183 183
         // check if rss display allowed for this category
184
-        if ((int)$model->category['configs']['showRss'] !== 1) {
184
+        if ((int) $model->category['configs']['showRss'] !== 1) {
185 185
             throw new ForbiddenException(__('Rss feed is disabled for this category'));
186 186
         }
187 187
 
Please login to merge, or discard this patch.
Apps/Model/Front/Content/EntityCategoryList.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $this->_path = $path;
55 55
         $this->_configs = $configs;
56
-        $this->_page = (int)$offset;
56
+        $this->_page = (int) $offset;
57 57
         parent::__construct();
58 58
     }
59 59
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     public function before()
66 66
     {
67 67
         // find one or more categories where we must looking for content items
68
-        if ((int)$this->_configs['multiCategories'] === 1) {
68
+        if ((int) $this->_configs['multiCategories'] === 1) {
69 69
             $this->findCategories();
70 70
         } else {
71 71
             $this->findCategory();
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
         }
136 136
 
137 137
         // calculate selection offset
138
-        $itemPerPage = (int)$this->_configs['itemPerCategory'];
138
+        $itemPerPage = (int) $this->_configs['itemPerCategory'];
139 139
         if ($itemPerPage < 1) {
140 140
             $itemPerPage = 1;
141 141
         }
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         ];
169 169
 
170 170
         // check if this category is hidden
171
-        if ((int)$this->category['configs']['showCategory'] !== 1) {
171
+        if ((int) $this->category['configs']['showCategory'] !== 1) {
172 172
             throw new ForbiddenException(__('This category is not available to view'));
173 173
         }
174 174
 
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
                 'poster' => $row->getPosterUri(),
219 219
                 'thumb' => $row->getPosterThumbUri(),
220 220
                 'thumbSize' => File::size($row->getPosterThumbUri()),
221
-                'views' => (int)$row->views,
222
-                'rating' => (int)$row->rating,
221
+                'views' => (int) $row->views,
222
+                'rating' => (int) $row->rating,
223 223
                 'category' => $this->categories[$row->category_id],
224 224
                 'uri' => '/content/read/' . $itemPath,
225 225
                 'tags' => $tags
Please login to merge, or discard this patch.