Passed
Push — master ( 006911...bda6ce )
by Mihail
04:31
created
Apps/View/Admin/default/comments/comment_read.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,16 +29,16 @@  discard block
 block discarded – undo
29 29
             $author = Url::link(['user/update', $record->user_id], $author);
30 30
         }
31 31
         ?>
32
-        <?= $author . ', ' . Date::convertToDatetime($record->created_at, Date::FORMAT_TO_HOUR)  ?>
32
+        <?= $author.', '.Date::convertToDatetime($record->created_at, Date::FORMAT_TO_HOUR)  ?>
33 33
         <div class="pull-right">
34
-        	<?php if ((bool)$record->moderate):?>
34
+        	<?php if ((bool) $record->moderate):?>
35 35
         		<?= Url::link(['comments/publish', 'comment', $record->id], __('Publish'), ['class' => 'label label-warning']) ?>
36 36
         	<?php endif; ?>
37 37
             <?= Url::link(['comments/edit', 'comment', $record->id], __('Edit'), ['class' => 'label label-primary']) ?>
38 38
             <?= Url::link(['comments/delete', 'comment', $record->id], __('Delete'), ['class' => 'label label-danger']) ?>
39 39
         </div>
40 40
     </div>
41
-    <div class="panel-body<?= ((bool)$record->moderate ? ' text-warning' : null)?>">
41
+    <div class="panel-body<?= ((bool) $record->moderate ? ' text-warning' : null)?>">
42 42
         <?= $record->message ?>
43 43
     </div>
44 44
 </div>
@@ -59,16 +59,16 @@  discard block
 block discarded – undo
59 59
         <?php
60 60
         $answerAuthor = Simplify::parseUserLink($answer->user_id, $answer->guest_name, 'user/update');
61 61
         ?>
62
-        <?= $answerAuthor . ', ' . Date::convertToDatetime($answer->created_at, Date::FORMAT_TO_HOUR) ?>
62
+        <?= $answerAuthor.', '.Date::convertToDatetime($answer->created_at, Date::FORMAT_TO_HOUR) ?>
63 63
         <div class="pull-right">
64
-            <?php if ((bool)$answer->moderate):?>
64
+            <?php if ((bool) $answer->moderate):?>
65 65
         		<?= Url::link(['comments/publish', 'answer', $answer->id], __('Publish'), ['class' => 'label label-warning']) ?>
66 66
         	<?php endif; ?>
67 67
             <?= Url::link(['comments/edit', 'answer', $answer->id], __('Edit'), ['class' => 'label label-primary']) ?>
68 68
             <?= Url::link(['comments/delete', 'answer', $answer->id], __('Delete'), ['class' => 'label label-danger']) ?>
69 69
         </div>
70 70
     </div>
71
-    <div class="panel-body<?= ((bool)$answer->moderate ? ' text-warning' : null)?>">
71
+    <div class="panel-body<?= ((bool) $answer->moderate ? ' text-warning' : null)?>">
72 72
         <?= $answer->message ?>
73 73
     </div>
74 74
 </div>
Please login to merge, or discard this patch.
Apps/Controller/Admin/Comments.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     public function actionIndex()
40 40
     {
41 41
         // set current page and offset
42
-        $page = (int)App::$Request->query->get('page');
42
+        $page = (int) App::$Request->query->get('page');
43 43
         $offset = $page * self::ITEM_PER_PAGE;
44 44
 
45 45
         // initialize active record model
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     public function actionDelete($type, $id = 0)
135 135
     {
136 136
         // sounds like a multiply delete definition
137
-        if ($id === 0 || (int)$id < 1) {
137
+        if ($id === 0 || (int) $id < 1) {
138 138
             $ids = App::$Request->query->get('selected');
139 139
             if (Obj::isArray($ids) && Arr::onlyNumericValues($ids)) {
140 140
                 $id = $ids;
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         if ($model->send() && $model->validate()) {
169 169
             $model->make();
170 170
             App::$Session->getFlashBag()->add('success', __('Comments or answers are successful deleted!'));
171
-            App::$Response->redirect('comments/' . ($type === 'answer' ? 'answerlist' : 'index'));
171
+            App::$Response->redirect('comments/'.($type === 'answer' ? 'answerlist' : 'index'));
172 172
         }
173 173
 
174 174
         // render view
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
     public function actionPublish($type, $id = 0)
188 188
     {
189 189
         // check if it multiple accept ids
190
-        if ($id === 0 || (int)$id < 1) {
190
+        if ($id === 0 || (int) $id < 1) {
191 191
             $ids = App::$Request->query->get('selected');
192 192
             if (Obj::isArray($ids) && Arr::onlyNumericValues($ids)) {
193 193
                 $id = $ids;
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
         if ($model->send()) {
222 222
             $model->make();
223 223
             App::$Session->getFlashBag()->add('success', __('Comments or answers are successful published'));
224
-            App::$Response->redirect('comments/' . ($type === 'answer' ? 'answerlist' : 'index'));
224
+            App::$Response->redirect('comments/'.($type === 'answer' ? 'answerlist' : 'index'));
225 225
         }
226 226
 
227 227
         return App::$View->render('publish', [
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     public function actionAnswerlist()
237 237
     {
238 238
         // set current page and offset
239
-        $page = (int)App::$Request->query->get('page');
239
+        $page = (int) App::$Request->query->get('page');
240 240
         $offset = $page * self::ITEM_PER_PAGE;
241 241
 
242 242
         // initialize ar answers model
Please login to merge, or discard this patch.
Apps/View/Front/default/content/read.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 }
24 24
 
25 25
 // don't use breadcrumbs on injected pathway rule
26
-if (!\App::$Request->isPathInjected() && (bool)$model->getCategory()->getProperty('showCategory')) {
26
+if (!\App::$Request->isPathInjected() && (bool) $model->getCategory()->getProperty('showCategory')) {
27 27
     $breadcrumbs = [
28 28
             Url::to('/') => __('Home')
29 29
     ];
@@ -35,21 +35,21 @@  discard block
 block discarded – undo
35 35
                 $breadcrumbs[Url::to('content/list', $cat['path'], null, [], false)] = $cat['name'];
36 36
             }
37 37
         }
38
-        $breadcrumbs[] = __('Content') . ': ' . Str::sub($this->title, 0, 40);
38
+        $breadcrumbs[] = __('Content').': '.Str::sub($this->title, 0, 40);
39 39
     }
40 40
 
41 41
     $this->breadcrumbs = $breadcrumbs;
42 42
 }
43 43
 
44 44
 $properties = [
45
-    'date' => (bool)$model->getCategory()->getProperty('showDate'),
46
-    'author' => (bool)$model->getCategory()->getProperty('showAuthor'),
47
-    'views' => (bool)$model->getCategory()->getProperty('showViews'),
48
-    'category' => (bool)$model->getCategory()->getProperty('showCategory'),
49
-    'rating' => (bool)$model->getCategory()->getProperty('showRating')
45
+    'date' => (bool) $model->getCategory()->getProperty('showDate'),
46
+    'author' => (bool) $model->getCategory()->getProperty('showAuthor'),
47
+    'views' => (bool) $model->getCategory()->getProperty('showViews'),
48
+    'category' => (bool) $model->getCategory()->getProperty('showCategory'),
49
+    'rating' => (bool) $model->getCategory()->getProperty('showRating')
50 50
 ];
51
-$showComments = (bool)$model->getCategory()->getProperty('showComments');
52
-$showPoster = (bool)$model->getCategory()->getProperty('showPoster');
51
+$showComments = (bool) $model->getCategory()->getProperty('showComments');
52
+$showPoster = (bool) $model->getCategory()->getProperty('showPoster');
53 53
 
54 54
 ?>
55 55
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         <span class="spaced"><i class="fa fa-eye"></i> <?= $model->views ?></span>
75 75
         <?php endif ?>
76 76
         <?php if (\App::$User->isAuth() && \App::$User->identity()->getRole()->can('Admin/Content/Update')): ?>
77
-        <span class="pull-right"><a href="<?= \App::$Alias->scriptUrl . '/admin/content/update/' . $model->id ?>" target="_blank"><i class="fa fa-pencil" style="color: #ff0000;"></i></a></span>
77
+        <span class="pull-right"><a href="<?= \App::$Alias->scriptUrl.'/admin/content/update/'.$model->id ?>" target="_blank"><i class="fa fa-pencil" style="color: #ff0000;"></i></a></span>
78 78
         <?php endif; ?>
79 79
     </div>
80 80
     <?php else: ?>
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     <div id="content-text">
87 87
         <?php if ($showPoster === true && $model->posterFull !== null && $model->posterThumb !== null): ?>
88 88
             <a href="#showPoster" data-toggle="modal" data-target="#showPoster">
89
-                <img alt="<?= __('Poster for') ?>: <?= Str::lowerCase(\App::$Security->strip_tags($model->title)) ?>" src="<?= \App::$Alias->scriptUrl . $model->posterThumb ?>" class="image_poster img-thumbnail" />
89
+                <img alt="<?= __('Poster for') ?>: <?= Str::lowerCase(\App::$Security->strip_tags($model->title)) ?>" src="<?= \App::$Alias->scriptUrl.$model->posterThumb ?>" class="image_poster img-thumbnail" />
90 90
             </a>
91 91
 
92 92
             <!-- Modal poster pop-up -->
@@ -98,19 +98,19 @@  discard block
 block discarded – undo
98 98
                             <h4 class="modal-title" id="myModalLabel"><?= __('View poster') ?></h4>
99 99
                         </div>
100 100
                         <div class="modal-body">
101
-                            <img class="img-responsive" src="<?= \App::$Alias->scriptUrl . $model->posterFull ?>" alt="<?= __('Poster image') ?>" style="margin: 0 auto;" />
101
+                            <img class="img-responsive" src="<?= \App::$Alias->scriptUrl.$model->posterFull ?>" alt="<?= __('Poster image') ?>" style="margin: 0 auto;" />
102 102
                         </div>
103 103
                     </div>
104 104
                 </div>
105 105
             </div>
106
-        <?php endif ;?>
106
+        <?php endif; ?>
107 107
         <?= $model->text ?>
108 108
     </div>
109 109
     <?php if ($model->galleryItems !== null && Obj::isArray($model->galleryItems)): ?>
110 110
         <div class="row">
111 111
         <?php foreach ($model->galleryItems as $thumbPic => $fullPic): ?>
112 112
             <div class="col-md-2 well">
113
-                <a href="#showGallery" class="modalGallery" content="<?= \App::$Alias->scriptUrl . $fullPic ?>"><img src="<?= \App::$Alias->scriptUrl . $thumbPic ?>" class="img-responsive image-item" /></a>
113
+                <a href="#showGallery" class="modalGallery" content="<?= \App::$Alias->scriptUrl.$fullPic ?>"><img src="<?= \App::$Alias->scriptUrl.$thumbPic ?>" class="img-responsive image-item" /></a>
114 114
             </div>
115 115
         <?php endforeach; ?>
116 116
         </div>
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                         <h4 class="modal-title" id="showModalLabel"><?= __('View picture') ?></h4>
123 123
                     </div>
124 124
                     <div class="modal-body" id="modal-gallery-body">
125
-                        <img class="img-responsive" src="<?= \App::$Alias->scriptUrl . $model->posterFull ?>" alt="<?= __('Gallery picture') ?>" style="margin: 0 auto;" />
125
+                        <img class="img-responsive" src="<?= \App::$Alias->scriptUrl.$model->posterFull ?>" alt="<?= __('Gallery picture') ?>" style="margin: 0 auto;" />
126 126
                     </div>
127 127
                 </div>
128 128
             </div>
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
                 </div>
144 144
                 <div id="similar<?= $idx ?>" class="panel-collapse collapse">
145 145
                     <div class="panel-body">
146
-                        <a href="<?= \App::$Alias->baseUrl . $item['uri'] ?>">
146
+                        <a href="<?= \App::$Alias->baseUrl.$item['uri'] ?>">
147 147
                             <?= $item['snippet'] ?>
148 148
                         </a>
149 149
                     </div>
@@ -167,14 +167,14 @@  discard block
 block discarded – undo
167 167
         	<?= \App::$View->render('content/_rateJs') ?>
168 168
     		</div>
169 169
     		<div class="pull-right">
170
-    		    <?php if ((int)$configs['keywordsAsTags'] === 1): ?>
170
+    		    <?php if ((int) $configs['keywordsAsTags'] === 1): ?>
171 171
                 <div id="content-tags">
172 172
                     <?php
173 173
                     if (Obj::isArray($model->metaKeywords) && count($model->metaKeywords) > 0 && Str::length($model->metaKeywords[0]) > 0) {
174 174
                         echo '<i class="fa fa-tags hidden-xs"></i> ';
175 175
                         foreach ($model->metaKeywords as $tag) {
176 176
                             $tag = \App::$Security->strip_tags(trim($tag));
177
-                            echo Url::link(['content/tag', $tag], $tag, ['class' => 'label label-default']) . "&nbsp;";
177
+                            echo Url::link(['content/tag', $tag], $tag, ['class' => 'label label-default'])."&nbsp;";
178 178
                         }
179 179
                     }
180 180
                     ?>
Please login to merge, or discard this patch.
Apps/Controller/Front/Content.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $path = App::$Request->getPathWithoutControllerAction();
53 53
         $configs = $this->getConfigs();
54
-        $page = (int)App::$Request->query->get('page');
55
-        $sort = (string)App::$Request->query->get('sort', 'newest');
56
-        $itemCount = (int)$configs['itemPerCategory'];
54
+        $page = (int) App::$Request->query->get('page');
55
+        $sort = (string) App::$Request->query->get('sort', 'newest');
56
+        $itemCount = (int) $configs['itemPerCategory'];
57 57
 
58 58
         // build special model with content list and category list information
59 59
         $model = new EntityCategoryList($path, $configs, $page, $sort);
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         $model = new EntityContentRead($categoryRecord, $contentRecord->first());
134 134
         $search = null;
135 135
         // check if similar search is enabled for item category
136
-        if ((int)$model->getCategory()->getProperty('showSimilar') === 1 && $trash === false) {
136
+        if ((int) $model->getCategory()->getProperty('showSimilar') === 1 && $trash === false) {
137 137
             $search = new EntityContentSearch($model->title, $model->id);
138 138
         }
139 139
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     {
163 163
         $configs = $this->getConfigs();
164 164
         // check if tags is enabled
165
-        if ((int)$configs['keywordsAsTags'] !== 1) {
165
+        if ((int) $configs['keywordsAsTags'] !== 1) {
166 166
             throw new NotFoundException(__('Tag system is disabled'));
167 167
         }
168 168
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
         }
176 176
 
177 177
         // get equal rows order by creation date
178
-        $records = ContentEntity::where('meta_keywords', 'like', '%' . $tagName . '%')->orderBy('created_at', 'DESC')->take(self::TAG_PER_PAGE);
178
+        $records = ContentEntity::where('meta_keywords', 'like', '%'.$tagName.'%')->orderBy('created_at', 'DESC')->take(self::TAG_PER_PAGE);
179 179
         // check if result is not empty
180 180
         if ($records->count() < 1) {
181 181
             throw new NotFoundException(__('Nothing founded'));
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
         $this->layout = null;
210 210
 
211 211
         // check if rss display allowed for this category
212
-        if ((int)$model->category['configs']['showRss'] !== 1) {
212
+        if ((int) $model->category['configs']['showRss'] !== 1) {
213 213
             throw new ForbiddenException(__('Rss feed is disabled for this category'));
214 214
         }
215 215
 
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
         // set channel data
221 221
         $channel->title($model->category['title'])
222 222
             ->description($model->category['description'])
223
-            ->url(App::$Alias->baseUrl . '/content/list/' . $model->category['path'])
223
+            ->url(App::$Alias->baseUrl.'/content/list/'.$model->category['path'])
224 224
             ->appendTo($feed);
225 225
 
226 226
         // add content data
@@ -230,10 +230,10 @@  discard block
 block discarded – undo
230 230
                 // add title, short text, url
231 231
                 $item->title($row['title'])
232 232
                     ->description($row['text'])
233
-                    ->url(App::$Alias->baseUrl . $row['uri']);
233
+                    ->url(App::$Alias->baseUrl.$row['uri']);
234 234
                 // add poster
235 235
                 if ($row['thumb'] !== null) {
236
-                    $item->enclosure(App::$Alias->scriptUrl . $row['thumb'], $row['thumbSize'], 'image/jpeg');
236
+                    $item->enclosure(App::$Alias->scriptUrl.$row['thumb'], $row['thumbSize'], 'image/jpeg');
237 237
                 }
238 238
 
239 239
                 // append response to channel
Please login to merge, or discard this patch.
Apps/Model/Front/Content/EntityCategoryList.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $this->_path = $path;
58 58
         $this->_configs = $configs;
59
-        $this->_page = (int)$offset;
59
+        $this->_page = (int) $offset;
60 60
         $this->_sort = $sort;
61 61
         parent::__construct();
62 62
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     public function before()
70 70
     {
71 71
         // find one or more categories where we must looking for content items
72
-        if ((int)$this->_configs['multiCategories'] === 1) {
72
+        if ((int) $this->_configs['multiCategories'] === 1) {
73 73
             $this->findCategories();
74 74
         } else {
75 75
             $this->findCategory();
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     private function findCategories()
108 108
     {
109 109
         // get all categories for current path and child of it
110
-        $query = ContentCategory::where('path', 'like', $this->_path . '%');
110
+        $query = ContentCategory::where('path', 'like', $this->_path.'%');
111 111
         if ($query->count() < 1) {
112 112
             throw new NotFoundException(__('Category is not founded'));
113 113
         }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
         }
141 141
 
142 142
         // calculate selection offset
143
-        $itemPerPage = (int)$this->_configs['itemPerCategory'];
143
+        $itemPerPage = (int) $this->_configs['itemPerCategory'];
144 144
         if ($itemPerPage < 1) {
145 145
             $itemPerPage = 1;
146 146
         }
@@ -177,15 +177,15 @@  discard block
 block discarded – undo
177 177
     {
178 178
         // prepare rss url link for current category if enabled
179 179
         $rssUrl = false;
180
-        if ((int)$this->_configs['rss'] === 1) {
181
-            $rssUrl = App::$Alias->baseUrl . '/content/rss/' . $this->_currentCategory->path;
180
+        if ((int) $this->_configs['rss'] === 1) {
181
+            $rssUrl = App::$Alias->baseUrl.'/content/rss/'.$this->_currentCategory->path;
182 182
             $rssUrl = rtrim($rssUrl, '/');
183 183
         }
184 184
 
185 185
         // prepare sorting urls
186 186
         $catSortParams = [];
187 187
         if (App::$Request->query->get('page') !== null) {
188
-            $catSortParams['page'] = (int)App::$Request->query->get('page');
188
+            $catSortParams['page'] = (int) App::$Request->query->get('page');
189 189
         }
190 190
         $catSortUrls = [
191 191
             'views' => Url::to('content/list', $this->_currentCategory->path, null, Arr::merge($catSortParams, ['sort' => 'views']), false),
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
         ];
205 205
 
206 206
         // check if this category is hidden
207
-        if ((int)$this->category['configs']['showCategory'] !== 1) {
207
+        if ((int) $this->category['configs']['showCategory'] !== 1) {
208 208
             throw new ForbiddenException(__('This category is not available to view'));
209 209
         }
210 210
 
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
             // check if current user can rate item
260 260
             $ignoredRate = App::$Session->get('content.rate.ignore');
261 261
             $canRate = true;
262
-            if (Obj::isArray($ignoredRate) && Arr::in((string)$row->id, $ignoredRate)) {
262
+            if (Obj::isArray($ignoredRate) && Arr::in((string) $row->id, $ignoredRate)) {
263 263
                 $canRate = false;
264 264
             }
265 265
             if (!App::$User->isAuth()) {
@@ -276,11 +276,11 @@  discard block
 block discarded – undo
276 276
                 'poster' => $row->getPosterUri(),
277 277
                 'thumb' => $row->getPosterThumbUri(),
278 278
                 'thumbSize' => File::size($row->getPosterThumbUri()),
279
-                'views' => (int)$row->views,
280
-                'rating' => (int)$row->rating,
279
+                'views' => (int) $row->views,
280
+                'rating' => (int) $row->rating,
281 281
                 'canRate' => $canRate,
282 282
                 'category' => $this->categories[$row->category_id],
283
-                'uri' => '/content/read/' . $itemPath,
283
+                'uri' => '/content/read/'.$itemPath,
284 284
                 'tags' => $tags
285 285
             ];
286 286
         }
Please login to merge, or discard this patch.
Apps/View/Front/default/layout/main.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     <?php
23 23
     $customCssCode = \App::$View->showPlainCode('css');
24 24
     if ($customCssCode !== null) {
25
-        echo '<style>' . $customCssCode . '</style>';
25
+        echo '<style>'.$customCssCode.'</style>';
26 26
     } ?>
27 27
     <script>
28 28
         window.jQ = [];
@@ -38,18 +38,18 @@  discard block
 block discarded – undo
38 38
 
39 39
 if (\App::$User->isAuth()) {
40 40
     $userId = \App::$User->identity()->getId();
41
-    $items[] = ['type' => 'dropdown', 'text' => '<i class="fa fa-user"></i> ' . __('Account') . ' <span class="badge pm-count-block">0</span>', 'html' => true, 'position' => 'right', 'items' => [
41
+    $items[] = ['type' => 'dropdown', 'text' => '<i class="fa fa-user"></i> '.__('Account').' <span class="badge pm-count-block">0</span>', 'html' => true, 'position' => 'right', 'items' => [
42 42
         ['link' => ['profile/show', $userId], 'text' => __('My profile')],
43
-        ['link' => ['profile/messages'], 'text' => __('Messages') . ' <span class="badge pm-count-block">0</span>', 'html' => true],
43
+        ['link' => ['profile/messages'], 'text' => __('Messages').' <span class="badge pm-count-block">0</span>', 'html' => true],
44 44
         ['link' => ['profile/settings'], 'text' => __('Settings')]
45 45
     ]];
46 46
     if (\App::$User->identity()->getRole()->can('Admin/Main/Index')) {
47
-        $items[] = ['type' => 'link', 'link' => \App::$Alias->scriptUrl . '/admin/', 'text' => '<i class="fa fa-cogs"></i> Admin', 'position' => 'right', 'html' => true];
47
+        $items[] = ['type' => 'link', 'link' => \App::$Alias->scriptUrl.'/admin/', 'text' => '<i class="fa fa-cogs"></i> Admin', 'position' => 'right', 'html' => true];
48 48
     }
49
-    $items[] = ['type' => 'link', 'link' => ['user/logout'], 'text' => '<i class="fa fa-user-times"></i> ' . __('Logout'), 'html' => true, 'position' => 'right'];
49
+    $items[] = ['type' => 'link', 'link' => ['user/logout'], 'text' => '<i class="fa fa-user-times"></i> '.__('Logout'), 'html' => true, 'position' => 'right'];
50 50
 } else {
51
-    $items[] = ['type' => 'link', 'link' => ['user/login'], 'text' => '<i class="fa fa-sign-in"></i> ' . __('Sign in'), 'position' => 'right', 'html' => true];
52
-    $items[] = ['type' => 'link', 'link' => ['user/signup'], 'text' => '<i class="fa fa-check-square-o"></i> ' . __('Sign up'), 'position' => 'right', 'html' => true];
51
+    $items[] = ['type' => 'link', 'link' => ['user/login'], 'text' => '<i class="fa fa-sign-in"></i> '.__('Sign in'), 'position' => 'right', 'html' => true];
52
+    $items[] = ['type' => 'link', 'link' => ['user/signup'], 'text' => '<i class="fa fa-check-square-o"></i> '.__('Sign up'), 'position' => 'right', 'html' => true];
53 53
 }
54 54
 
55 55
 echo Navbar::display([
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     'container' => 'container',
59 59
     'collapseId' => 'collapse-object',
60 60
     'items' => $items
61
-]);?>
61
+]); ?>
62 62
 </header>
63 63
 
64 64
 <div class="container body-container">
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                 echo $body;
134 134
             } else {
135 135
                 \App::$Response->setStatusCode(404);
136
-                echo '<p>' . __('Page is not founded!') . '</p>';
136
+                echo '<p>'.__('Page is not founded!').'</p>';
137 137
             }
138 138
             ?>
139 139
         </div>
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 <?php
210 210
 $customJsCode = \App::$View->showPlainCode('js');
211 211
 if ($customJsCode !== null) {
212
-    echo '<script>' . $customJsCode . '</script>';
212
+    echo '<script>'.$customJsCode.'</script>';
213 213
 }
214 214
 // render google analytics code here
215 215
 echo \App::$View->render('blocks/googleanalytics');
Please login to merge, or discard this patch.