Test Failed
Push — master ( c2af76...a0e4e3 )
by Mihail
05:19
created
Apps/View/Front/default/feedback/list.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,9 +46,8 @@
 block discarded – undo
46 46
         ['text' => $item->id],
47 47
         ['text' => Url::a(['feedback/read', [$item->id, $item->hash]], Text::cut($item->message, 0, 40)), 'html' => true],
48 48
         ['text' =>
49
-            (int)$item->closed === 1 ?
50
-                '<span class="badge badge-danger">' . __('Closed') . '</span>' :
51
-                '<span class="badge badge-success">' . __('Opened') . '</span>',
49
+            (int) $item->closed === 1 ?
50
+                '<span class="badge badge-danger">'.__('Closed').'</span>' : '<span class="badge badge-success">'.__('Opened').'</span>',
52 51
             'html' => true, '!secure' => true],
53 52
         ['text' => $item->answers()->count()],
54 53
         ['text' => Date::convertToDatetime($item->created_at, Date::FORMAT_TO_HOUR)],
Please login to merge, or discard this patch.
Apps/View/Front/default/feedback/read.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 if (!(bool)$post->closed && \App::$User->isAuth()) {
31 31
     $user = App::$User->identity();
32 32
     if ((int)$user->getId() === (int)$post->user_id) {
33
-       echo Url::a(['feedback/close', [$post->id, $post->hash]], __('Close request'), ['class' => 'btn btn-danger']);
33
+        echo Url::a(['feedback/close', [$post->id, $post->hash]], __('Close request'), ['class' => 'btn btn-danger']);
34 34
     }
35 35
 }
36 36
 ?>
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@  discard block
 block discarded – undo
27 27
 <?php endif; ?>
28 28
 
29 29
 <?php
30
-if (!(bool)$post->closed && \App::$User->isAuth()) {
30
+if (!(bool) $post->closed && \App::$User->isAuth()) {
31 31
     $user = App::$User->identity();
32
-    if ((int)$user->getId() === (int)$post->user_id) {
32
+    if ((int) $user->getId() === (int) $post->user_id) {
33 33
        echo Url::a(['feedback/close', [$post->id, $post->hash]], __('Close request'), ['class' => 'btn btn-danger']);
34 34
     }
35 35
 }
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 </div>
51 51
 <h3><?= __('Answers') ?></h3>
52 52
 <hr />
53
-<?php if (!(bool)$post->readed && (!$answers || $answers->count() < 1)): ?>
53
+<?php if (!(bool) $post->readed && (!$answers || $answers->count() < 1)): ?>
54 54
     <?= $this->bootstrap()->alert('warning', __('This message is not properly readed by website administrators')) ?>
55 55
 <?php endif; ?>
56 56
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         <div class="row" id="feedback-answer-<?= $answer->id ?>">
60 60
             <div class="col-md-12">
61 61
                 <div class="card">
62
-                    <div class="card-header<?= (bool)$answer->is_admin ? ' bg-success' : null ?>">
62
+                    <div class="card-header<?= (bool) $answer->is_admin ? ' bg-success' : null ?>">
63 63
                         <strong><?= $answer->name ?> (<?= $answer->email ?>)</strong>,
64 64
                         <?= Date::convertToDatetime($answer->created_at, Date::FORMAT_TO_HOUR) ?>
65 65
                     </div>
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 <?php endif; ?>
74 74
 
75 75
 <br />
76
-<?php if (!(bool)$post->closed && $model): ?>
76
+<?php if (!(bool) $post->closed && $model): ?>
77 77
     <h3><?= __('Add answer') ?></h3>
78 78
     <?php $form = $this->form($model) ?>
79 79
     <?= $form->start() ?>
Please login to merge, or discard this patch.
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,9 +22,12 @@  discard block
 block discarded – undo
22 22
 <h1><?= __('Feedback message #%id%', ['id' => $post->id]) ?></h1>
23 23
 <?php if (\App::$User->isAuth()): ?>
24 24
     <?= $this->insert('feedback/_authTabs') ?>
25
-<?php else: ?>
25
+<?php else {
26
+    : ?>
26 27
     <hr />
27
-<?php endif; ?>
28
+<?php endif;
29
+}
30
+?>
28 31
 
29 32
 <?php
30 33
 if (!(bool)$post->closed && \App::$User->isAuth()) {
@@ -85,8 +88,11 @@  discard block
 block discarded – undo
85 88
     <?= $form->button()->submit(__('Add'), ['class' => 'btn btn-primary']) ?>
86 89
 
87 90
     <?= $form->stop() ?>
88
-<?php else: ?>
91
+<?php else {
92
+    : ?>
89 93
     <?= $this->bootstrap()->alert('danger', __('This request is closed! No answers is allowed')) ?>
90
-<?php endif; ?>
94
+<?php endif;
95
+}
96
+?>
91 97
 
92 98
 <?php $this->stop() ?>
Please login to merge, or discard this patch.
Apps/View/Front/default/feedback/_mail/created.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
                 <tbody>
34 34
                 <tr>
35 35
                     <td align="left" style="font-family:Helvetica Neue,Arial,Helvetica,sans-serif;padding-left:9px;font-size:14px;">
36
-                        <a href="<?= \App::$Alias->scriptUrl ?>/feedback/read/<?= $record->id . '/' . $record->hash ?>">
36
+                        <a href="<?= \App::$Alias->scriptUrl ?>/feedback/read/<?= $record->id.'/'.$record->hash ?>">
37 37
                             <?= __('View request') ?>
38 38
                         </a>
39 39
                     </td>
Please login to merge, or discard this patch.
Apps/View/Front/default/widgets/contenttag/default.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,5 +7,5 @@
 block discarded – undo
7 7
 ?>
8 8
 
9 9
 <?php foreach ($records as $row) {
10
-    echo Url::a(['content/tag', [$row['tag']]], $row['tag'], ['class' => 'badge badge-secondary']) . ' ';
10
+    echo Url::a(['content/tag', [$row['tag']]], $row['tag'], ['class' => 'badge badge-secondary']).' ';
11 11
 }
12 12
\ No newline at end of file
Please login to merge, or discard this patch.
Apps/Controller/Front/Feedback.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -39,18 +39,18 @@  discard block
 block discarded – undo
39 39
     {
40 40
         // get configs
41 41
         $configs = $this->getConfigs();
42
-        if (!App::$User->isAuth() && !(bool)$configs['guestAdd']) {
42
+        if (!App::$User->isAuth() && !(bool) $configs['guestAdd']) {
43 43
             throw new ForbiddenException(__('Feedback available only for authorized users'));
44 44
         }
45 45
 
46 46
         // initialize model
47
-        $model = new FormFeedbackAdd((bool)$configs['useCaptcha']);
47
+        $model = new FormFeedbackAdd((bool) $configs['useCaptcha']);
48 48
         if ($model->send()) {
49 49
             if ($model->validate()) {
50 50
                 // if validation is passed save data to db and get row
51 51
                 $record = $model->make();
52 52
                 App::$Session->getFlashBag()->add('success', __('Your message was added successful'));
53
-                $this->response->redirect('feedback/read/' . $record->id . '/' . $record->hash);
53
+                $this->response->redirect('feedback/read/'.$record->id.'/'.$record->hash);
54 54
             } else {
55 55
                 App::$Session->getFlashBag()->add('error', __('Message is not sended! Please, fix issues in form below'));
56 56
             }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         // render output view
60 60
         return $this->view->render('feedback/create', [
61 61
             'model' => $model,
62
-            'useCaptcha' => (bool)$configs['useCaptcha']
62
+            'useCaptcha' => (bool) $configs['useCaptcha']
63 63
         ]);
64 64
     }
65 65
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
         $model = null;
92 92
         // check if feedback post is not closed for answers
93
-        if (!(bool)$recordPost->closed) {
93
+        if (!(bool) $recordPost->closed) {
94 94
             // init new answer add model
95 95
             $model = new FormAnswerAdd($recordPost);
96 96
             // if answer is sender lets try to make it model
@@ -133,10 +133,10 @@  discard block
 block discarded – undo
133 133
         // check if action is submited
134 134
         if ($this->request->request->get('closeRequest', false)) {
135 135
             // if created by authorized user
136
-            if ((int)$record->user_id > 0) {
136
+            if ((int) $record->user_id > 0) {
137 137
                 $user = App::$User->identity();
138 138
                 // button is pressed not by request creator
139
-                if (!$user || $user->getId() !== (int)$record->user_id) {
139
+                if (!$user || $user->getId() !== (int) $record->user_id) {
140 140
                     throw new ForbiddenException(__('This feedback request was created by another user'));
141 141
                 }
142 142
             }
@@ -147,11 +147,11 @@  discard block
 block discarded – undo
147 147
 
148 148
             // add notification and redirect
149 149
             App::$Session->getFlashBag()->add('warning', __('Feedback request now is closed!'));
150
-            $this->response->redirect('feedback/read/' . $id . '/' . $hash);
150
+            $this->response->redirect('feedback/read/'.$id.'/'.$hash);
151 151
         }
152 152
 
153 153
         return $this->view->render('feedback/close', [
154
-            'id' => (int)$id,
154
+            'id' => (int) $id,
155 155
             'hash' => $hash
156 156
         ]);
157 157
     }
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     public function actionList(): ?string
165 165
     {
166 166
         // set current page and offset
167
-        $page = (int)$this->request->query->get('page');
167
+        $page = (int) $this->request->query->get('page');
168 168
         $offset = $page * self::ITEM_PER_PAGE;
169 169
 
170 170
         // check if user is authorized or throw exception
Please login to merge, or discard this patch.
Apps/Controller/Api/Main.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,8 +45,8 @@  discard block
 block discarded – undo
45 45
             'roots' => [
46 46
                 [
47 47
                     'driver' => 'LocalFileSystem',
48
-                    'path' => root . '/upload/',
49
-                    'URL' => App::$Alias->scriptUrl . '/upload/'
48
+                    'path' => root.'/upload/',
49
+                    'URL' => App::$Alias->scriptUrl.'/upload/'
50 50
                 ]
51 51
             ]
52 52
         ]));
@@ -111,9 +111,9 @@  discard block
 block discarded – undo
111 111
     {
112 112
         $this->setJsonHeader();
113 113
         // get ffcms news if cache is not available
114
-        $cache = App::$Cache->getItem('download.ffcms.api.news.' . $this->lang);
114
+        $cache = App::$Cache->getItem('download.ffcms.api.news.'.$this->lang);
115 115
         if (!$cache->isHit()) {
116
-            $cache->set(File::getFromUrl('https://ffcms.org/api/api/news?lang=' . $this->lang))
116
+            $cache->set(File::getFromUrl('https://ffcms.org/api/api/news?lang='.$this->lang))
117 117
                 ->expiresAfter(1440);
118 118
         }
119 119
         return $cache->get();
Please login to merge, or discard this patch.
Apps/View/Admin/default/main/routing.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
                 if (Any::isArray($route)) {
38 38
                     foreach ($route as $source => $target) {
39 39
                         $alias->row([
40
-                            ['text' => '<span class="badge badge-primary">' . $source . '</span> ' .
41
-                                '→ ' .
42
-                                '<span class="badge badge-secondary">' . $target . '</span>', 'html' => true],
40
+                            ['text' => '<span class="badge badge-primary">'.$source.'</span> '.
41
+                                '→ '.
42
+                                '<span class="badge badge-secondary">'.$target.'</span>', 'html' => true],
43 43
                             ['text' => $env],
44 44
                             ['text' => Url::a(
45 45
                                 ['main/deleteroute', null, ['type' => 'Alias', 'loader' => $env, 'path' => $source]],
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
                 if (Any::isArray($route)) {
72 72
                     foreach ($route as $source => $target) {
73 73
                         $dynamic->row([
74
-                            ['text' => '<span class="badge badge-primary">' . $source . '</span> ' .
75
-                                '→ ' .
76
-                                '<span class="badge badge-secondary">' . $target . '</span>', 'html' => true],
74
+                            ['text' => '<span class="badge badge-primary">'.$source.'</span> '.
75
+                                '→ '.
76
+                                '<span class="badge badge-secondary">'.$target.'</span>', 'html' => true],
77 77
                             ['text' => $env],
78 78
                             ['text' => Url::a(
79 79
                                 ['main/deleteroute', null, ['type' => 'Callback', 'loader' => $env, 'path' => $source]],
@@ -92,6 +92,6 @@  discard block
 block discarded – undo
92 92
 </div>
93 93
 <?php if (!$aliasExist && !$callbackExist): ?>
94 94
     <p class="alert alert-warning"><?= __('Custom routes is not yet found') ?></p>
95
-<?php endif ;?>
96
-<?= Url::a(['main/addroute'], '<i class="fa fa-plus"></i> ' . __('New route'), ['class' => 'btn btn-primary', 'html' => true]) ?>
95
+<?php endif; ?>
96
+<?= Url::a(['main/addroute'], '<i class="fa fa-plus"></i> '.__('New route'), ['class' => 'btn btn-primary', 'html' => true]) ?>
97 97
 <?php $this->stop() ?>
Please login to merge, or discard this patch.
Apps/View/Admin/default/main/updates.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,10 @@
 block discarded – undo
64 64
     echo $form->button()->submit(__('Download update'), ['class' => 'btn btn-primary']);
65 65
     echo $form->stop();
66 66
     ?>
67
-<?php else: ?>
67
+<?php else {
68
+    : ?>
68 69
     <p class="alert alert-success"><?= __('Your system is up to date. No updates is available') ?></p>
69
-<?php endif; ?>
70
+<?php endif;
71
+}
72
+?>
70 73
 <?php $this->stop() ?>
Please login to merge, or discard this patch.
Apps/View/Admin/default/application/_actions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 
6 6
 ?>
7 7
 <?php if (isset($controller)): ?>
8
-    <a href="<?= Url::to($controller . '/index') ?>"><i class="fa fa-cogs"></i></a>&nbsp;
8
+    <a href="<?= Url::to($controller.'/index') ?>"><i class="fa fa-cogs"></i></a>&nbsp;
9 9
     <a href="<?= Url::to('application/turn', [$controller]) ?>"><i class="fa fa-power-off"></i></a>
10 10
 <?php endif; ?>
11 11
\ No newline at end of file
Please login to merge, or discard this patch.