Passed
Push — master ( 7d97ae...1dbfa0 )
by Mihail
04:17
created
Apps/View/Front/default/widgets/comments/show.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     </li>
55 55
 </ul>
56 56
 
57
-<?php if ((int)$configs['guestAdd'] === 1 || \App::$User->isAuth()): ?>
57
+<?php if ((int) $configs['guestAdd'] === 1 || \App::$User->isAuth()): ?>
58 58
 <!-- comment form -->
59 59
 <form name="comment-add-form" action="" method="post" style="padding-top: 15px;" class="form-horizontal">
60 60
     <input type="hidden" name="replay-to" value="0" />
Please login to merge, or discard this patch.
Apps/Controller/Admin/Main.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
         // cache some data
33 33
         $rootSize = App::$Cache->get('root.size');
34 34
         if ($rootSize === null) {
35
-            $rootSize = round(Directory::getSize('/') / (1024*1000), 2) . ' mb';
35
+            $rootSize = round(Directory::getSize('/') / (1024 * 1000), 2) . ' mb';
36 36
             App::$Cache->set('root.size', $rootSize, 60 * 60 * 24); // 24 hours caching
37 37
         }
38 38
         $loadAvg = App::$Cache->get('load.average');
39 39
         if ($loadAvg === null) {
40 40
             $loadAvg = Environment::loadAverage();
41
-            App::$Cache->set('load.average', $loadAvg, 60*2); // 2 min cache
41
+            App::$Cache->set('load.average', $loadAvg, 60 * 2); // 2 min cache
42 42
         }
43 43
 
44 44
         $stats = [
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
      */
146 146
     public function actionDeleteroute()
147 147
     {
148
-        $type = (string)App::$Request->query->get('type');
149
-        $loader = (string)App::$Request->query->get('loader');
150
-        $source = Str::lowerCase((string)App::$Request->query->get('path'));
148
+        $type = (string) App::$Request->query->get('type');
149
+        $loader = (string) App::$Request->query->get('loader');
150
+        $source = Str::lowerCase((string) App::$Request->query->get('path'));
151 151
 
152 152
         $model = new EntityDeleteRoute($type, $loader, $source);
153 153
         if ($model->send()) {
Please login to merge, or discard this patch.
Apps/Model/Api/Comments/CommentPostAdd.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     public function check()
57 57
     {
58 58
         // check if user is auth'd or guest name is defined
59
-        if (!App::$User->isAuth() && ((int)$this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) {
59
+        if (!App::$User->isAuth() && ((int) $this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) {
60 60
             throw new JsonException(__('Guest name is not defined'));
61 61
         }
62 62
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         }
67 67
 
68 68
         // check if message length is correct
69
-        if (Str::length($this->message) < (int)$this->_configs['minLength'] || Str::length($this->message) > (int)$this->_configs['maxLength']) {
69
+        if (Str::length($this->message) < (int) $this->_configs['minLength'] || Str::length($this->message) > (int) $this->_configs['maxLength']) {
70 70
             throw new JsonException(__('Message length is incorrect. Current: %cur% , min - %min%, max - %max%', [
71 71
                 'cur' => Str::length($this->message),
72 72
                 'min' => $this->_configs['minLength'],
Please login to merge, or discard this patch.
Apps/Model/Api/Comments/CommentAnswerAdd.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     public function check()
57 57
     {
58 58
         // check if user is auth'd or guest name is defined
59
-        if (!App::$User->isAuth() && ((int)$this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) {
59
+        if (!App::$User->isAuth() && ((int) $this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) {
60 60
             throw new JsonException(__('Guest name is not defined'));
61 61
         }
62 62
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         }
67 67
 
68 68
         // check if message length is correct
69
-        if (Str::length($this->message) < (int)$this->_configs['minLength'] || Str::length($this->message) > (int)$this->_configs['maxLength']) {
69
+        if (Str::length($this->message) < (int) $this->_configs['minLength'] || Str::length($this->message) > (int) $this->_configs['maxLength']) {
70 70
             throw new JsonException(__('Message length is incorrect. Current: %cur% , min - %min%, max - %max%', [
71 71
                 'cur' => Str::length($this->message),
72 72
                 'min' => $this->_configs['minLength'],
Please login to merge, or discard this patch.
Apps/Controller/Admin/Comments.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
         $query = new UserRecords();
27 27
 
28 28
         // set current page and offset
29
-        $page = (int)App::$Request->query->get('page');
29
+        $page = (int) App::$Request->query->get('page');
30 30
         $offset = $page * self::ITEM_PER_PAGE;
31 31
 
32 32
         // build pagination
Please login to merge, or discard this patch.
Apps/Controller/Api/Comments.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $this->setJsonHeader();
31 31
         $configs = AppRecord::getConfigs('widget', 'Comments');
32 32
 
33
-        $replayTo = (int)App::$Request->request->get('replay-to');
33
+        $replayTo = (int) App::$Request->request->get('replay-to');
34 34
         $model = null;
35 35
         // check if its a answer (comment answer type)
36 36
         if ($replayTo > 0) {
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         }
43 43
 
44 44
         // pass general comment params to model
45
-        $model->message = App::$Security->secureHtml((string)App::$Request->request->get('message'));
45
+        $model->message = App::$Security->secureHtml((string) App::$Request->request->get('message'));
46 46
         $model->guestName = App::$Security->strip_tags(App::$Request->request->get('guest-name'));
47 47
 
48 48
         // check model conditions before add new row
@@ -74,12 +74,12 @@  discard block
 block discarded – undo
74 74
         // get configs
75 75
         $configs = AppRecord::getConfigs('widget', 'Comments');
76 76
         // items per page
77
-        $perPage = (int)$configs['perPage'];
77
+        $perPage = (int) $configs['perPage'];
78 78
         // offset can be only integer
79
-        $index = (int)$index;
79
+        $index = (int) $index;
80 80
         $offset = $perPage * $index;
81 81
         // get comment target path and check
82
-        $path = (string)App::$Request->query->get('path');
82
+        $path = (string) App::$Request->query->get('path');
83 83
         if (Str::likeEmpty($path)) {
84 84
             throw new JsonException('Wrong path');
85 85
         }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         $query = CommentPost::where('pathway', '=', $path);
89 89
 
90 90
         // check if comments is depend of language locale
91
-        if ((int)$configs['onlyLocale'] === 1) {
91
+        if ((int) $configs['onlyLocale'] === 1) {
92 92
             $query = $query->where('lang', '=', App::$Request->getLanguage());
93 93
         }
94 94
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
     public function actionShowanswers($commentId)
137 137
     {
138 138
         // check input data
139
-        if (!Obj::isLikeInt($commentId) || (int)$commentId < 1) {
139
+        if (!Obj::isLikeInt($commentId) || (int) $commentId < 1) {
140 140
             throw new JsonException('Input data is incorrect');
141 141
         }
142 142
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 
146 146
         // get data from db by comment id
147 147
         $records = CommentAnswer::where('comment_id', '=', $commentId);
148
-        if ((int)$configs['onlyLocale'] === 1) {
148
+        if ((int) $configs['onlyLocale'] === 1) {
149 149
             $records = $records->where('lang', '=', App::$Request->getLanguage());
150 150
         }
151 151
 
Please login to merge, or discard this patch.
Apps/View/Admin/default/comments/index.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
 foreach ($records as $item) {
32 32
     $message = Text::cut(\App::$Security->strip_tags($item->message), 0, 75);
33 33
     $userArr = [];
34
-    if ((int)$item->user_id > 0 && \App::$User->isExist($item->user_id)) {
34
+    if ((int) $item->user_id > 0 && \App::$User->isExist($item->user_id)) {
35 35
         $userName = \App::$User->identity($item->user_id)->getProfile()->getNickname();
36 36
         $userArr = ['text' => Url::link(['user/update', $item->user_id], $userName), 'html' => true];
37 37
     }
Please login to merge, or discard this patch.
Apps/Controller/Admin/Feedback.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function actionIndex()
33 33
     {
34 34
         // set current page and offset
35
-        $page = (int)App::$Request->query->get('page');
35
+        $page = (int) App::$Request->query->get('page');
36 36
         $offset = $page * self::ITEM_PER_PAGE;
37 37
 
38 38
         // get feedback posts AR table
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
         // initialize model with answer add if thread is not closed
75 75
         $model = null;
76
-        if ((int)$record->closed !== 1) {
76
+        if ((int) $record->closed !== 1) {
77 77
             $model = new FormAnswerAdd($record, App::$User->identity()->getId());
78 78
             if ($model->send()) {
79 79
                 if ($model->validate()) {
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             case 'answer':
105 105
                 $record = FeedbackAnswer::find($id);
106 106
                 if ($record !== null && $record !== false) {
107
-                    $postId = (int)$record->getFeedbackPost()->id;
107
+                    $postId = (int) $record->getFeedbackPost()->id;
108 108
                 }
109 109
                 break;
110 110
         }
Please login to merge, or discard this patch.
Apps/Controller/Front/Feedback.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
     {
41 41
         // get configs
42 42
         $configs = $this->getConfigs();
43
-        if (!App::$User->isAuth() && (int)$configs['guestAdd'] !== 1) {
43
+        if (!App::$User->isAuth() && (int) $configs['guestAdd'] !== 1) {
44 44
             throw new ForbiddenException(__('Feedback available only for authorized users'));
45 45
         }
46 46
 
47 47
         // initialize model
48
-        $model = new FormFeedbackAdd((int)$configs['useCaptcha'] === 1);
48
+        $model = new FormFeedbackAdd((int) $configs['useCaptcha'] === 1);
49 49
         if ($model->send()) {
50 50
             if ($model->validate()) {
51 51
                 // if validation is passed save data to db and get row
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         // render output view
62 62
         return App::$View->render('create', [
63 63
             'model' => $model->export(),
64
-            'useCaptcha' => (int)$configs['useCaptcha'] === 1
64
+            'useCaptcha' => (int) $configs['useCaptcha'] === 1
65 65
         ]);
66 66
     }
67 67
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $userId = App::$User->isAuth() ? App::$User->identity()->getId() : 0;
93 93
         $model = null;
94 94
         // check if feedback post is not closed for answers
95
-        if ((int)$recordPost->closed === 0) {
95
+        if ((int) $recordPost->closed === 0) {
96 96
             // init new answer add model
97 97
             $model = new FormAnswerAdd($recordPost, $userId);
98 98
             // if answer is sender lets try to make it model
@@ -127,10 +127,10 @@  discard block
 block discarded – undo
127 127
         // check if action is submited
128 128
         if (App::$Request->request->get('closeRequest', false)) {
129 129
             // if created by authorized user
130
-            if ((int)$record->user_id !== 0) {
130
+            if ((int) $record->user_id !== 0) {
131 131
                 $user = App::$User->identity();
132 132
                 // button is pressed not by request creator
133
-                if ($user === null || $user->getId() !== (int)$record->user_id) {
133
+                if ($user === null || $user->getId() !== (int) $record->user_id) {
134 134
                     throw new ForbiddenException(__('This feedback request was created by another user'));
135 135
                 }
136 136
             }
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
     public function actionList()
157 157
     {
158 158
         // set current page and offset
159
-        $page = (int)App::$Request->query->get('page');
159
+        $page = (int) App::$Request->query->get('page');
160 160
         $offset = $page * self::ITEM_PER_PAGE;
161 161
 
162 162
         // check if user is authorized or throw exception
Please login to merge, or discard this patch.