Passed
Push — master ( 0206ad...aeb2a3 )
by Mihail
03:59
created
Apps/View/Install/default/native/macro/notify.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
 if (Obj::isArray($notify) && count($notify) > 0) {
31 31
     foreach ($notify as $type => $messages) {
32 32
         foreach ($messages as $message) {
33
-            echo '<p class="alert ' . type2html($type) . '">
33
+            echo '<p class="alert '.type2html($type).'">
34 34
             <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>'
35
-                . \Ffcms\Core\App::$Security->strip_tags($message) . '</p>';
35
+                . \Ffcms\Core\App::$Security->strip_tags($message).'</p>';
36 36
         }
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
Apps/View/Install/default/layout/main.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     <?php
17 17
     $customCssCode = \App::$View->showPlainCode('css');
18 18
     if ($customCssCode !== null) {
19
-        echo '<style>' . $customCssCode . '</style>';
19
+        echo '<style>'.$customCssCode.'</style>';
20 20
     } ?>
21 21
     <script>
22 22
         window.jQ = [];
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     <?php
63 63
     $customJsCode = \App::$View->showPlainCode('js');
64 64
     if ($customJsCode !== null) {
65
-        echo '<script>' . $customJsCode . '</script>';
65
+        echo '<script>'.$customJsCode.'</script>';
66 66
     }
67 67
     ?>
68 68
 </body>
Please login to merge, or discard this patch.
Apps/Model/Admin/Application/FormUpdate.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
     public function before()
34 34
     {
35 35
         // get full name of update object
36
-        $class = 'Apps\Controller\Admin\\' . $this->_record->sys_name;
36
+        $class = 'Apps\Controller\Admin\\'.$this->_record->sys_name;
37 37
         if (class_exists($class)) {
38 38
             $this->_callback = $class;
39 39
         } else {
Please login to merge, or discard this patch.
Apps/Model/Admin/Profile/FormFieldUpdate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@
 block discarded – undo
62 62
         ];
63 63
 
64 64
         foreach (App::$Properties->get('languages') as $lang) {
65
-            $rules[] = ['name.' . $lang, 'required'];
66
-            $rules[] = ['name.' . $lang, 'length_max', 50];
65
+            $rules[] = ['name.'.$lang, 'required'];
66
+            $rules[] = ['name.'.$lang, 'length_max', 50];
67 67
         }
68 68
 
69 69
         return $rules;
Please login to merge, or discard this patch.
Apps/Model/Admin/Main/FormAddRoute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
         $configData = [
59 59
             ucfirst(Str::lowerCase($this->type)) => [
60 60
                 ucfirst(Str::lowerCase($this->loader)) => [
61
-                    '/' . trim($this->source, '/') => '/' . trim($this->target, '/')
61
+                    '/'.trim($this->source, '/') => '/'.trim($this->target, '/')
62 62
                 ]
63 63
             ]
64 64
         ];
Please login to merge, or discard this patch.
Apps/Model/Admin/Main/EntityDeleteRoute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
 
49 49
         // prepare source path
50 50
         if ($this->type === 'Alias') {
51
-            $this->source = '/' . trim($this->source, '/');
51
+            $this->source = '/'.trim($this->source, '/');
52 52
         } else {
53 53
             $this->source = ucfirst($this->source);
54 54
         }
Please login to merge, or discard this patch.
Apps/Model/Admin/Content/FormCategoryDelete.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         }
76 76
 
77 77
         // get all depended category ids
78
-        $cats = ContentCategory::where('path', 'like', $this->_record->path . '%')->get(['id'])->toArray();
78
+        $cats = ContentCategory::where('path', 'like', $this->_record->path.'%')->get(['id'])->toArray();
79 79
         $allCategoryIds = Arr::ploke('id', $cats);
80 80
 
81 81
         // update category_id in content
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         $response = [];
111 111
         foreach ($data as $key=>$val) {
112 112
             if ($this->_record->id !== $key) {
113
-                $response[] = (string)$key;
113
+                $response[] = (string) $key;
114 114
             }
115 115
         }
116 116
         return $response;
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
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         ];
108 108
 
109 109
         // general category
110
-        if ($this->_new === false && (int)$this->_record->id === 1) {
110
+        if ($this->_new === false && (int) $this->_record->id === 1) {
111 111
             $rules[] = ['path', 'used'];
112 112
         } else {
113 113
             $rules[] = ['path', 'required'];
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
             $rules[] = ['path', 'reverse_match', '/[\/\'~`\!@#\$%\^&\*\(\)+=\{\}\[\]\|;:"\<\>,\?\\\]/'];
117 117
         }
118 118
 
119
-        $rules[] = ['title.' . App::$Request->getLanguage(), 'required'];
119
+        $rules[] = ['title.'.App::$Request->getLanguage(), 'required'];
120 120
 
121 121
 
122 122
         return $rules;
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     {
130 130
         $this->_record->title = Serialize::encode(App::$Security->strip_tags($this->title));
131 131
         $this->_record->description = Serialize::encode(App::$Security->strip_tags($this->description));
132
-        $savePath = trim($this->_pathNested . '/' . $this->path, '/');
132
+        $savePath = trim($this->_pathNested.'/'.$this->path, '/');
133 133
         $this->_record->path = $savePath;
134 134
         $this->_record->configs = Serialize::encode($this->configs);
135 135
         $this->_record->save();
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         // build path with owner category
165 165
         $this->_pathNested = $owner->path;
166 166
         if (Str::length($this->_pathNested) > 0) {
167
-            $path = $this->_pathNested . '/' . $path;
167
+            $path = $this->_pathNested.'/'.$path;
168 168
         }
169 169
 
170 170
         // make select for check
Please login to merge, or discard this patch.
Apps/Model/Front/Profile/FormAvatarUpload.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     public function copyFile(iUser $user)
48 48
     {
49 49
         // move file to original folder
50
-        $upload = $this->file->move(root . '/upload/user/avatar/original/', $user->id . '.' . $this->file->guessExtension());
50
+        $upload = $this->file->move(root.'/upload/user/avatar/original/', $user->id.'.'.$this->file->guessExtension());
51 51
 
52 52
         try {
53 53
             // big image
@@ -82,11 +82,11 @@  discard block
 block discarded – undo
82 82
         }
83 83
 
84 84
         $image = new Image();
85
-        $image->setCacheDir(root . '/Private/Cache/images');
85
+        $image->setCacheDir(root.'/Private/Cache/images');
86 86
 
87 87
         $image->open($original->getPathname())
88 88
             ->cropResize($sizeConvert[$size][0], $sizeConvert[$size][1])
89
-            ->save(root . '/upload/user/avatar/' . $size . '/' . $user_id . '.jpg', 'jpg', static::COMPRESS_QUALITY);
89
+            ->save(root.'/upload/user/avatar/'.$size.'/'.$user_id.'.jpg', 'jpg', static::COMPRESS_QUALITY);
90 90
 
91 91
         return null;
92 92
     }
Please login to merge, or discard this patch.