Passed
Push — master ( 10220a...9ad793 )
by Mihail
05:11
created
Apps/View/Front/default/content/_rate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 $numericRating = 0;
8 8
 if ($rating > 0) {
9 9
     $cssRatingClass = 'label-success';
10
-    $numericRating = '+' . $rating;
11
-} elseif($rating < 0) {
10
+    $numericRating = '+'.$rating;
11
+} elseif ($rating < 0) {
12 12
     $cssRatingClass = 'label-danger';
13 13
     $numericRating = $rating;
14 14
 }
Please login to merge, or discard this patch.
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/Main/FormAddRoute.php 2 patches
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.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
 
22 22
 
23 23
     /**
24
-    * Load default properties into the model
25
-    */
24
+     * Load default properties into the model
25
+     */
26 26
     public function before()
27 27
     {
28 28
         $this->cfg = App::$Properties->getAll('Routing');
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/Front/Profile/FormSettings.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     */
57 57
     public function labels()
58 58
     {
59
-        $labels =  [
59
+        $labels = [
60 60
             'nick' => __('Nickname'),
61 61
             'sex' => __('Sex'),
62 62
             'birthday' => __('Birthday'),
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
         // labels for custom fields
70 70
         foreach (ProfileField::getAll() as $custom) {
71
-            $labels['custom_data.' . $custom->id] = Serialize::getDecodeLocale($custom->name);
71
+            $labels['custom_data.'.$custom->id] = Serialize::getDecodeLocale($custom->name);
72 72
         }
73 73
 
74 74
         return $labels;
@@ -93,12 +93,12 @@  discard block
 block discarded – undo
93 93
         // custom profile fields
94 94
         foreach (ProfileField::getAll() as $custom) {
95 95
             $rules[] = [
96
-                'custom_data.' . $custom->id,
96
+                'custom_data.'.$custom->id,
97 97
                 'used'
98 98
             ];
99 99
             $rules[] = [
100
-                'custom_data.' . $custom->id,
101
-                (int)$custom->reg_cond === 1 ? 'direct_match' : 'reverse_match',
100
+                'custom_data.'.$custom->id,
101
+                (int) $custom->reg_cond === 1 ? 'direct_match' : 'reverse_match',
102 102
                 $custom->reg_exp
103 103
             ];
104 104
         }
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    * Set default data
42
-    */
41
+     * Set default data
42
+     */
43 43
     public function before()
44 44
     {
45 45
         $profile = $this->_user->getProfile()->toArray(); // object to array (property's is protected of access)
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-    * Form display labels
64
-    */
63
+     * Form display labels
64
+     */
65 65
     public function labels()
66 66
     {
67 67
         $labels =  [
@@ -83,8 +83,8 @@  discard block
 block discarded – undo
83 83
     }
84 84
 
85 85
     /**
86
-    * Rules for validation
87
-    */
86
+     * Rules for validation
87
+     */
88 88
     public function rules()
89 89
     {
90 90
         $rules = [
Please login to merge, or discard this patch.
Apps/Model/Front/Profile/FormAvatarUpload.php 2 patches
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.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
     const COMPRESS_QUALITY = 90;
21 21
 
22 22
     /**
23
-    * Form text helper data with translation
24
-    */
23
+     * Form text helper data with translation
24
+     */
25 25
     public function labels()
26 26
     {
27 27
         return [
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-    * Validation rules for avatar uploading
34
-    */
33
+     * Validation rules for avatar uploading
34
+     */
35 35
     public function rules()
36 36
     {
37 37
         return [
Please login to merge, or discard this patch.
Apps/Model/Console/ArchBuilder.php 2 patches
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
         $objectTemplate = null;
30 30
 
31 31
         if ($singleName) {
32
-            $objectDirPath = root . '/Apps/' . $type . '/';
33
-            $objectNamespace = 'Apps\\' . $type;
32
+            $objectDirPath = root.'/Apps/'.$type.'/';
33
+            $objectNamespace = 'Apps\\'.$type;
34 34
             $objectName = ucfirst($name);
35 35
         } else {
36 36
             $split = explode('/', $name);
@@ -47,46 +47,46 @@  discard block
 block discarded – undo
47 47
             }
48 48
             
49 49
             if ($type === 'Widget') {
50
-                $objectDirPath = root . '/Widgets/' . $workground;
51
-                $objectNamespace = 'Widgets\\' . $workground;
50
+                $objectDirPath = root.'/Widgets/'.$workground;
51
+                $objectNamespace = 'Widgets\\'.$workground;
52 52
             } else {
53
-                $objectDirPath = root . '/Apps/' . $type . '/' . $workground;
54
-                $objectNamespace = 'Apps\\' . $type . '\\' . $workground;
53
+                $objectDirPath = root.'/Apps/'.$type.'/'.$workground;
54
+                $objectNamespace = 'Apps\\'.$type.'\\'.$workground;
55 55
             }
56 56
             
57 57
             if (false !== $subName) {
58
-                $objectDirPath .= '/' . implode('/', $subName);
59
-                $objectNamespace .= '\\' . implode('\\', $subName);
58
+                $objectDirPath .= '/'.implode('/', $subName);
59
+                $objectNamespace .= '\\'.implode('\\', $subName);
60 60
             }
61 61
 
62 62
 
63 63
             // try to find workground-based controller
64
-            if (File::exist('/Private/Carcase/' . $workground . '/' . $type . '.tphp')) {
65
-                $objectTemplate = File::read('/Private/Carcase/' . $workground . '/' . $type . '.tphp');
64
+            if (File::exist('/Private/Carcase/'.$workground.'/'.$type.'.tphp')) {
65
+                $objectTemplate = File::read('/Private/Carcase/'.$workground.'/'.$type.'.tphp');
66 66
             }
67 67
         }
68 68
 
69 69
         if (!Directory::exist($objectDirPath) && !Directory::create($objectDirPath)) {
70
-            $this->message = 'Directory could not be created: ' . $objectDirPath;
70
+            $this->message = 'Directory could not be created: '.$objectDirPath;
71 71
             return false;
72 72
         }
73 73
 
74 74
         if ($objectTemplate === null) {
75
-            $objectTemplate = File::read('/Private/Carcase/' . $type . '.tphp');
75
+            $objectTemplate = File::read('/Private/Carcase/'.$type.'.tphp');
76 76
             if (false === $objectTemplate) {
77
-                $this->message = 'Php template file is not founded: /Private/Carcase/' . $type . '.tphp';
77
+                $this->message = 'Php template file is not founded: /Private/Carcase/'.$type.'.tphp';
78 78
                 return false;
79 79
             }
80 80
         }
81 81
 
82 82
         $objectContent = Str::replace(['%namespace%', '%name%'], [$objectNamespace, $objectName], $objectTemplate);
83
-        $objectFullPath = $objectDirPath . '/' . $objectName . '.php';
83
+        $objectFullPath = $objectDirPath.'/'.$objectName.'.php';
84 84
         if (File::exist($objectFullPath)) {
85
-            $this->message = $type . ' is always exist: ' . $objectFullPath;
85
+            $this->message = $type.' is always exist: '.$objectFullPath;
86 86
             return false;
87 87
         }
88 88
         File::write($objectFullPath, $objectContent);
89
-        $this->message = $type . ' template was created: [' . $objectName . '] in path: ' . Str::replace(root, '', $objectDirPath);
89
+        $this->message = $type.' template was created: ['.$objectName.'] in path: '.Str::replace(root, '', $objectDirPath);
90 90
         return true;
91 91
     }
92 92
 }
93 93
\ No newline at end of file
Please login to merge, or discard this patch.
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -10,6 +10,10 @@
 block discarded – undo
10 10
 {
11 11
     public $message;
12 12
 
13
+    /**
14
+     * @param string $name
15
+     * @param string $type
16
+     */
13 17
     public function createObject($name, $type)
14 18
     {
15 19
         $singleName = false;
Please login to merge, or discard this patch.
Apps/Model/Basic/Antivirus.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $this->beginTime = time();
34 34
 
35 35
         $this->signatures = new \DOMDocument();
36
-        $this->signatures->load(root . '/Private/Antivirus/Signatures.xml');
36
+        $this->signatures->load(root.'/Private/Antivirus/Signatures.xml');
37 37
 
38 38
         // list of files is not prepared, 1st iteration
39 39
         if (!File::exist('/Private/Antivirus/ScanFiles.json')) {
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         $this->scanFiles = json_decode(File::read('/Private/Antivirus/ScanFiles.json'));
48 48
         if (File::exist('/Private/Antivirus/Infected.json')) {
49
-            $this->infected = (array)json_decode(File::read('/Private/Antivirus/Infected.json'));
49
+            $this->infected = (array) json_decode(File::read('/Private/Antivirus/Infected.json'));
50 50
         }
51 51
     }
52 52
 
@@ -108,13 +108,13 @@  discard block
 block discarded – undo
108 108
 
109 109
             switch ($attrFormat) {
110 110
                 case 're':
111
-                    if ((preg_match('#(' . $sigContent . ')#smi', $content, $found, PREG_OFFSET_CAPTURE)) ||
112
-                        (preg_match('#(' . $sigContent . ')#smi', $normalized, $found, PREG_OFFSET_CAPTURE))
111
+                    if ((preg_match('#('.$sigContent.')#smi', $content, $found, PREG_OFFSET_CAPTURE)) ||
112
+                        (preg_match('#('.$sigContent.')#smi', $normalized, $found, PREG_OFFSET_CAPTURE))
113 113
                     ) {
114 114
                         $detected = true;
115 115
                         $pos = $found[0][1];
116 116
                         $this->infected[$path][] = [
117
-                            'pos' => (int)$pos,
117
+                            'pos' => (int) $pos,
118 118
                             'sigId' => $attrId,
119 119
                             'sigRule' => $sigContent,
120 120
                             'sever' => $attrSever,
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                         (($pos = strpos($normalized, $sigContent)) !== false)
129 129
                     ) {
130 130
                         $this->infected[$path][] = [
131
-                            'pos' => (int)$pos,
131
+                            'pos' => (int) $pos,
132 132
                             'sigId' => $attrId,
133 133
                             'sigRule' => $sigContent,
134 134
                             'sever' => $attrSever,
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     private function prepareScanlist()
150 150
     {
151
-        $files = (object)File::listFiles(root, $this->affectedExt);
151
+        $files = (object) File::listFiles(root, $this->affectedExt);
152 152
         File::write('/Private/Antivirus/ScanFiles.json', json_encode($files));
153 153
     }
154 154
 
Please login to merge, or discard this patch.