Passed
Push — master ( 17b30a...9c28de )
by Mihail
14:15
created
Apps/Model/Api/Comments/EntityCommentData.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function __construct($record, $calcAnswers = true)
30 30
     {
31 31
         $this->_record = $record;
32
-        $this->_calcAnswers = (bool)$calcAnswers;
32
+        $this->_calcAnswers = (bool) $calcAnswers;
33 33
         if ($this->_record instanceof CommentPost) {
34 34
             $this->_type = 'post';
35 35
         } elseif ($this->_record instanceof CommentAnswer) {
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
         // build user data
54 54
         $userName = __('Unknown');
55
-        $userAvatar = App::$Alias->scriptUrl . '/upload/user/avatar/small/default.jpg';
55
+        $userAvatar = App::$Alias->scriptUrl.'/upload/user/avatar/small/default.jpg';
56 56
         $userColor = 0;
57 57
         if ($this->_record->user !== null && $this->_record->user->id > 0) {
58 58
             $userName = $this->_record->user->profile->getNickname();
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             'text' => $this->_record->message,
72 72
             'date' => Date::convertToDatetime($this->_record->created_at, Date::FORMAT_TO_HOUR),
73 73
             'pathway' => $this->_record->pathway,
74
-            'moderate' => (int)$this->_record->moderate,
74
+            'moderate' => (int) $this->_record->moderate,
75 75
             'user' => [
76 76
                 'id' => $this->_record->user_id,
77 77
                 'name' => $userName,
Please login to merge, or discard this patch.
Apps/Model/Front/Content/EntityCategoryList.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     {
59 59
         $this->_path = $path;
60 60
         $this->_configs = $configs;
61
-        $this->_page = (int)$offset;
61
+        $this->_page = (int) $offset;
62 62
         $this->_sort = $sort;
63 63
         parent::__construct();
64 64
     }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     public function before()
72 72
     {
73 73
         // find one or more categories where we must looking for content items
74
-        if ((int)$this->_configs['multiCategories'] === 1) {
74
+        if ((int) $this->_configs['multiCategories'] === 1) {
75 75
             $this->findCategories();
76 76
         } else {
77 77
             $this->findCategory();
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public function setItemLimit($limit)
92 92
     {
93
-        $this->_customItemLimit = (int)$limit;
93
+        $this->_customItemLimit = (int) $limit;
94 94
     }
95 95
 
96 96
     /**
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     private function findCategories()
119 119
     {
120 120
         // get all categories for current path and child of it
121
-        $query = ContentCategory::where('path', 'like', $this->_path . '%');
121
+        $query = ContentCategory::where('path', 'like', $this->_path.'%');
122 122
         if ($query->count() < 1) {
123 123
             throw new NotFoundException(__('Category is not founded'));
124 124
         }
@@ -151,10 +151,10 @@  discard block
 block discarded – undo
151 151
         }
152 152
 
153 153
         // calculate selection offset
154
-        $itemPerPage = (int)$this->_configs['itemPerCategory'];
154
+        $itemPerPage = (int) $this->_configs['itemPerCategory'];
155 155
         // check if custom itemlimit defined over model api
156 156
         if ($this->_customItemLimit !== false) {
157
-            $itemPerPage = (int)$this->_customItemLimit;
157
+            $itemPerPage = (int) $this->_customItemLimit;
158 158
         }
159 159
 
160 160
         $offset = $this->_page * $itemPerPage;
@@ -197,15 +197,15 @@  discard block
 block discarded – undo
197 197
         $catConfigs = $this->_currentCategory->configs;
198 198
         // prepare rss url link for current category if enabled
199 199
         $rssUrl = false;
200
-        if ((int)$this->_configs['rss'] === 1 && (int)$catConfigs['showRss'] === 1) {
201
-            $rssUrl = App::$Alias->baseUrl . '/content/rss/' . $this->_currentCategory->path;
200
+        if ((int) $this->_configs['rss'] === 1 && (int) $catConfigs['showRss'] === 1) {
201
+            $rssUrl = App::$Alias->baseUrl.'/content/rss/'.$this->_currentCategory->path;
202 202
             $rssUrl = rtrim($rssUrl, '/');
203 203
         }
204 204
 
205 205
         // prepare sorting urls
206 206
         $catSortParams = [];
207 207
         if (App::$Request->query->get('page')) {
208
-            $catSortParams['page'] = (int)App::$Request->query->get('page');
208
+            $catSortParams['page'] = (int) App::$Request->query->get('page');
209 209
         }
210 210
 
211 211
         $catSortUrls = [
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
         ];
226 226
 
227 227
         // check if this category is hidden
228
-        if (!(bool)$this->category['configs']['showCategory']) {
228
+        if (!(bool) $this->category['configs']['showCategory']) {
229 229
             throw new ForbiddenException(__('This category is not available to view'));
230 230
         }
231 231
 
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
             // check if current user can rate item
279 279
             $ignoredRate = App::$Session->get('content.rate.ignore');
280 280
             $canRate = true;
281
-            if (Any::isArray($ignoredRate) && Arr::in((string)$row->id, $ignoredRate)) {
281
+            if (Any::isArray($ignoredRate) && Arr::in((string) $row->id, $ignoredRate)) {
282 282
                 $canRate = false;
283 283
             }
284 284
 
@@ -299,13 +299,13 @@  discard block
 block discarded – undo
299 299
                 'poster' => $row->getPosterUri(),
300 300
                 'thumb' => $row->getPosterThumbUri(),
301 301
                 'thumbSize' => File::size($row->getPosterThumbUri()),
302
-                'views' => (int)$row->views,
303
-                'rating' => (int)$row->rating,
302
+                'views' => (int) $row->views,
303
+                'rating' => (int) $row->rating,
304 304
                 'canRate' => $canRate,
305 305
                 'category' => $this->categories[$row->category_id],
306
-                'uri' => '/content/read/' . $itemPath,
306
+                'uri' => '/content/read/'.$itemPath,
307 307
                 'tags' => $tags,
308
-                'important' => (bool)$row->important
308
+                'important' => (bool) $row->important
309 309
             ];
310 310
         }
311 311
 
Please login to merge, or discard this patch.
Apps/Model/Front/Search/EntitySearchMain.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function make()
38 38
     {
39
-        $itemCount = (int)$this->_configs['itemPerApp'];
39
+        $itemCount = (int) $this->_configs['itemPerApp'];
40 40
         // search content items
41 41
         $content = new SearchContent($this->query, $itemCount);
42 42
         $this->results['Content'] = $content->getResult();
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
                 /** @var AbstractSearchResult $item */
64 64
                 // build unique relevance. Problem: returned relevance from query is integer
65 65
                 // and can be duplicated. So, we add random complex float value and make it string to sort in feature
66
-                $uniqueRelevance = (string)($item->getRelevance() + (mt_rand(0, 999)/10000));
66
+                $uniqueRelevance = (string) ($item->getRelevance() + (mt_rand(0, 999) / 10000));
67 67
                 // build response
68 68
                 $result[$uniqueRelevance] = [
69 69
                     'title' => $item->getTitle(),
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         $queries = explode(' ', $this->query);
94 94
         $dom = new Dom();
95 95
         foreach ($queries as $query) {
96
-            $highlight = $dom->{$tag}(function () use ($query) {
96
+            $highlight = $dom->{$tag}(function() use ($query) {
97 97
                 return $query;
98 98
             }, $properties);
99 99
             $text = Str::ireplace($query, $highlight, $text);
Please login to merge, or discard this patch.
Apps/Model/Front/Sitemap/EntityIndexList.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,11 +48,11 @@  discard block
 block discarded – undo
48 48
         $scan = File::listFiles(static::INDEX_PATH, ['.xml'], true);
49 49
         if (Any::isArray($scan)) {
50 50
             foreach ($scan as $file) {
51
-                if ($this->_lang !== null && !Str::contains('.' . $this->_lang, $file)) {
51
+                if ($this->_lang !== null && !Str::contains('.'.$this->_lang, $file)) {
52 52
                     continue;
53 53
                 }
54 54
 
55
-                $this->files[] = static::INDEX_PATH . '/' . $file;
55
+                $this->files[] = static::INDEX_PATH.'/'.$file;
56 56
             }
57 57
         }
58 58
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         // build file information data
70 70
         foreach ($this->files as $file) {
71 71
             $this->info[] = [
72
-                'loc' => App::$Alias->scriptUrl . $file,
72
+                'loc' => App::$Alias->scriptUrl.$file,
73 73
                 'lastmod' => Date::convertToDatetime(File::mTime($file), 'c')
74 74
             ];
75 75
         }
Please login to merge, or discard this patch.
Apps/Model/Front/Feedback/FormAnswerAdd.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     public function __construct($recordPost, $userId = 0)
32 32
     {
33 33
         $this->_post = $recordPost;
34
-        $this->_userId = (int)$userId;
34
+        $this->_userId = (int) $userId;
35 35
         parent::__construct();
36 36
     }
37 37
 
@@ -98,9 +98,9 @@  discard block
 block discarded – undo
98 98
 
99 99
         // add notification msg
100 100
         $targetId = $this->_post->user_id;
101
-        if ($targetId !== null && (int)$targetId > 0 && $targetId !== $this->_userId) {
101
+        if ($targetId !== null && (int) $targetId > 0 && $targetId !== $this->_userId) {
102 102
             $notify = new EntityAddNotification($targetId);
103
-            $uri = '/feedback/read/' . $this->_post->id . '/' . $this->_post->hash . '#feedback-answer-' . $record->id;
103
+            $uri = '/feedback/read/'.$this->_post->id.'/'.$this->_post->hash.'#feedback-answer-'.$record->id;
104 104
             $notify->add($uri, EntityAddNotification::MSG_ADD_FEEDBACKANSWER, [
105 105
                 'snippet' => Text::snippet($this->message, 50),
106 106
                 'post' => Text::snippet($this->_post->message, 50)
Please login to merge, or discard this patch.
Apps/Model/Front/Feedback/FormFeedbackAdd.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     public function __construct($captcha = true)
30 30
     {
31
-        $this->_useCaptcha = (bool)$captcha;
31
+        $this->_useCaptcha = (bool) $captcha;
32 32
         parent::__construct();
33 33
     }
34 34
 
Please login to merge, or discard this patch.
Apps/Model/Admin/Content/FormCategoryUpdate.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         ];
113 113
 
114 114
         // general category
115
-        if ($this->_new === false && (int)$this->_record->id === 1) {
115
+        if ($this->_new === false && (int) $this->_record->id === 1) {
116 116
             $rules[] = ['path', 'used'];
117 117
         } else {
118 118
             $rules[] = ['path', 'required'];
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $rules[] = ['path', 'reverse_match', '/[\/\'~`\!@#\$%\^&\*\(\)+=\{\}\[\]\|;:"\<\>,\?\\\]/'];
122 122
         }
123 123
 
124
-        $rules[] = ['title.' . App::$Request->getLanguage(), 'required'];
124
+        $rules[] = ['title.'.App::$Request->getLanguage(), 'required'];
125 125
 
126 126
 
127 127
         return $rules;
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     {
135 135
         $this->_record->title = $this->title;
136 136
         $this->_record->description = $this->description;
137
-        $savePath = trim($this->_pathNested . '/' . $this->path, '/');
137
+        $savePath = trim($this->_pathNested.'/'.$this->path, '/');
138 138
         $this->_record->path = $savePath;
139 139
         $this->_record->configs = $this->configs;
140 140
         $this->_record->save();
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         // build path with owner category
170 170
         $this->_pathNested = $owner->path;
171 171
         if (Str::length($this->_pathNested) > 0) {
172
-            $path = $this->_pathNested . '/' . $path;
172
+            $path = $this->_pathNested.'/'.$path;
173 173
         }
174 174
 
175 175
         // make select for check
Please login to merge, or discard this patch.
Apps/Model/Admin/Content/FormCategoryDelete.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
         }
81 81
 
82 82
         // get all depended category ids
83
-        $cats = ContentCategory::where('path', 'like', $this->_record->path . '%')->get(['id'])->toArray();
83
+        $cats = ContentCategory::where('path', 'like', $this->_record->path.'%')->get(['id'])->toArray();
84 84
         $allCategoryIds = Arr::pluck('id', $cats);
85 85
 
86 86
         // update category_id in content
Please login to merge, or discard this patch.
Apps/Model/Admin/Contenttag/FormSettings.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
      */
31 31
     public function before()
32 32
     {
33
-        $this->count = (int)$this->_configs['count'];
34
-        $this->cache = (int)$this->_configs['cache'];
33
+        $this->count = (int) $this->_configs['count'];
34
+        $this->cache = (int) $this->_configs['cache'];
35 35
     }
36 36
 
37 37
     /**
Please login to merge, or discard this patch.