Passed
Push — master ( 665b79...f7da23 )
by Mihail
08:59
created
Apps/Controller/Front/Main.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
 
26 26
     public function actionRead($id)
27 27
     {
28
-        echo "Action read called" . $id;
28
+        echo "Action read called".$id;
29 29
     }
30 30
 }
31 31
\ No newline at end of file
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Apps\Controller\Front;
4 4
 
5 5
 use Extend\Core\Arch\Controller;
6
-use Apps\Model\Front\User;
7
-use Ffcms\Core\App;
8 6
 
9 7
 
10 8
 class Main extends Controller
Please login to merge, or discard this patch.
Apps/Controller/Api/Main.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $connector = new \elFinderConnector(new \elFinder([
33 33
             'locale' => '',
34 34
             'roots' => [
35
-                ['driver' => 'LocalFileSystem', 'path' => root . '/upload/', 'URL' => App::$Alias->scriptUrl . '/upload/']
35
+                ['driver' => 'LocalFileSystem', 'path' => root.'/upload/', 'URL' => App::$Alias->scriptUrl.'/upload/']
36 36
             ]
37 37
         ]));
38 38
 
Please login to merge, or discard this patch.
Apps/ActiveRecord/Profile.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
         }
47 47
 
48 48
         // check in cache
49
-        if (MainApp::$Memory->get('profile.object.cache.' . $user_id) !== null) {
50
-            return MainApp::$Memory->get('profile.object.cache.' . $user_id);
49
+        if (MainApp::$Memory->get('profile.object.cache.'.$user_id) !== null) {
50
+            return MainApp::$Memory->get('profile.object.cache.'.$user_id);
51 51
         }
52 52
 
53 53
         // find row
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
         $object = $profile->first();
62 62
 
63
-        MainApp::$Memory->set('profile.object.cache.' . $user_id, $object);
63
+        MainApp::$Memory->set('profile.object.cache.'.$user_id, $object);
64 64
         return $object;
65 65
     }
66 66
 
@@ -71,17 +71,17 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function getAvatarUrl($type = 'small')
73 73
     {
74
-        $default = '/upload/user/avatar/' . $type . '/default.jpg';
74
+        $default = '/upload/user/avatar/'.$type.'/default.jpg';
75 75
         if (!Arr::in($type, ['small', 'big', 'medium'])) {
76
-            return MainApp::$Alias->scriptUrl . $default;
76
+            return MainApp::$Alias->scriptUrl.$default;
77 77
         }
78 78
 
79
-        $route = '/upload/user/avatar/' . $type . '/' . $this->user_id . '.jpg';
79
+        $route = '/upload/user/avatar/'.$type.'/'.$this->user_id.'.jpg';
80 80
         if (File::exist($route)) {
81
-            return MainApp::$Alias->scriptUrl . $route . '?mtime=' . File::mTime($route);
81
+            return MainApp::$Alias->scriptUrl.$route.'?mtime='.File::mTime($route);
82 82
         }
83 83
 
84
-        return MainApp::$Alias->scriptUrl . $default;
84
+        return MainApp::$Alias->scriptUrl.$default;
85 85
     }
86 86
 
87 87
     /**
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     {
93 93
         $userNick = $this->nick;
94 94
         if ($userNick === null || Str::likeEmpty($userNick)) {
95
-            $userNick = 'id' . $this->id;
95
+            $userNick = 'id'.$this->id;
96 96
         }
97 97
 
98 98
         return $userNick;
Please login to merge, or discard this patch.
Apps/ActiveRecord/ContentCategory.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public static function getByPath($path = '')
29 29
     {
30
-        if (MainApp::$Memory->get('cache.content.category.path.' . $path) !== null) {
31
-            return MainApp::$Memory->get('cache.content.category.path.' . $path);
30
+        if (MainApp::$Memory->get('cache.content.category.path.'.$path) !== null) {
31
+            return MainApp::$Memory->get('cache.content.category.path.'.$path);
32 32
         }
33 33
 
34 34
         $record = self::where('path', '=', $path)->first();
35
-        MainApp::$Memory->set('cache.content.category.path.' . $path, $record);
35
+        MainApp::$Memory->set('cache.content.category.path.'.$path, $record);
36 36
         return $record;
37 37
     }
38 38
 
@@ -43,12 +43,12 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public static function getById($id)
45 45
     {
46
-        if (MainApp::$Memory->get('cache.content.category.id.' . $id) !== null) {
47
-            return MainApp::$Memory->get('cache.content.category.id.' . $id);
46
+        if (MainApp::$Memory->get('cache.content.category.id.'.$id) !== null) {
47
+            return MainApp::$Memory->get('cache.content.category.id.'.$id);
48 48
         }
49 49
 
50 50
         $record = self::find($id);
51
-        MainApp::$Memory->set('cache.content.category.id.' . $id, $record);
51
+        MainApp::$Memory->set('cache.content.category.id.'.$id, $record);
52 52
         return $record;
53 53
     }
54 54
 
@@ -82,12 +82,12 @@  discard block
 block discarded – undo
82 82
             } else {
83 83
                 // set level marker based on slashes count in pathway
84 84
                 $slashCount = Str::entryCount($path, '/');
85
-                for ($i=-1; $i <= $slashCount; $i++) {
85
+                for ($i = -1; $i <= $slashCount; $i++) {
86 86
                     $title .= '--';
87 87
                 }
88 88
             }
89 89
             // add canonical title from db
90
-            $title .= ' ' . Serialize::getDecodeLocale($data->title);
90
+            $title .= ' '.Serialize::getDecodeLocale($data->title);
91 91
             // set response as array [id => title, ... ]
92 92
             $response[$data->id] = $title;
93 93
         }
Please login to merge, or discard this patch.
Apps/ActiveRecord/Content.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         }
96 96
 
97 97
         // build path and check is file exists on disk
98
-        $path = '/upload/gallery/' . $this->id . '/orig/' . $pName;
98
+        $path = '/upload/gallery/'.$this->id.'/orig/'.$pName;
99 99
         if (!File::exist($path)) {
100 100
             return null;
101 101
         }
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 
117 117
         // remove extension, thumbs always in jpeg ;D
118 118
         $pName = Str::cleanExtension($pName);
119
-        $path = '/upload/gallery/' . $this->id . '/thumb/' . $pName . '.jpg';
119
+        $path = '/upload/gallery/'.$this->id.'/thumb/'.$pName.'.jpg';
120 120
 
121 121
         if (!File::exist($path)) {
122 122
             return null;
Please login to merge, or discard this patch.
Widgets/Basic/LanguageSwitcher.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
         foreach (App::$Translate->getAvailableLangs() as $lang) {
34 34
             $items[] = [
35 35
                 'type' => 'link',
36
-                'link' => App::$Alias->baseUrlNoLang . '/' . $lang . App::$Request->getPathInfo(),
36
+                'link' => App::$Alias->baseUrlNoLang.'/'.$lang.App::$Request->getPathInfo(),
37 37
                 'text' => '<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="flag flag-'.$lang.'" />',
38 38
                 'html' => true,
39 39
                 '!secure' => true
Please login to merge, or discard this patch.
index.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 $uriRequest = $_SERVER['REQUEST_URI'];
13 13
 
14 14
 // get configs to prepare posible route to switch environment
15
-$configs = require(root . '/Private/Config/Default.php');
15
+$configs = require(root.'/Private/Config/Default.php');
16 16
 // remove base path
17 17
 $uriRequest = substr($uriRequest, strlen($configs['basePath']));
18 18
 $uriArray = explode('/', $uriRequest);
@@ -23,8 +23,8 @@  discard block
 block discarded – undo
23 23
 $uriLoader = ucfirst(strtolower(str_replace('.', '', $uriLoader)));
24 24
 
25 25
 // if loader of interface is available - require it
26
-if (in_array($uriLoader, $loaderList, true) && file_exists(root . '/Loader/' . $uriLoader . '/index.php')) {
27
-    require_once (root . '/Loader/' . $uriLoader . '/index.php');
26
+if (in_array($uriLoader, $loaderList, true) && file_exists(root.'/Loader/'.$uriLoader.'/index.php')) {
27
+    require_once (root.'/Loader/'.$uriLoader.'/index.php');
28 28
 } else { // else - try to load default interface
29
-    require_once (root . '/Loader/Front/index.php');
29
+    require_once (root.'/Loader/Front/index.php');
30 30
 }
31 31
\ No newline at end of file
Please login to merge, or discard this patch.
Loader/Api/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 // this environment is based on json response type
13 13
 define('env_type', 'json');
14 14
 
15
-require_once(root . '/Loader/Autoload.php');
15
+require_once(root.'/Loader/Autoload.php');
16 16
 
17 17
 // make fast-access alias \App::$Object
18 18
 // class_alias('Ffcms\Core\App', 'App');
Please login to merge, or discard this patch.
Loader/Autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 }
9 9
 
10 10
 // load composer packages
11
-$loader = require root . '/vendor/autoload.php';
11
+$loader = require root.'/vendor/autoload.php';
12 12
 // enable autoload for general namespaces user apps
13 13
 $loader->add('Apps\\', root);
14
-$loader->add('Apps\\', root . '/vendor/phpffcms/demo-app-package/src'); // todo: remove me
14
+$loader->add('Apps\\', root.'/vendor/phpffcms/demo-app-package/src'); // todo: remove me
15 15
 $loader->add('Extend\\', root);
16 16
 $loader->add('Widgets\\', root);
Please login to merge, or discard this patch.