Passed
Push — master ( 37fbce...eb9638 )
by Mihail
09:07
created
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.