Passed
Push — master ( 347935...cc7747 )
by Mihail
05:42
created
Apps/Model/Front/Profile/FormAvatarUpload.php 1 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/Front/User/FormSocialAuth.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@
 block discarded – undo
44 44
     }
45 45
 
46 46
     /**
47
-    * Parse user identifier to attributes
48
-    */
47
+     * Parse user identifier to attributes
48
+     */
49 49
     public function before()
50 50
     {
51 51
         // set unique user id from provider response
Please login to merge, or discard this patch.
Private/Config/Routing.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php return [
2
-	'Alias' => [
3
-		'Front' => [
4
-			'/' => '/content/list/news'
5
-		]
6
-	]
2
+    'Alias' => [
3
+        'Front' => [
4
+            '/' => '/content/list/news'
5
+        ]
6
+    ]
7 7
 ];
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
Apps/Model/Front/User/FormRecovery.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
     public $captcha;
23 23
 
24 24
     /**
25
-    * Labels for visual display
26
-    */
25
+     * Labels for visual display
26
+     */
27 27
     public function labels()
28 28
     {
29 29
         return [
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-    * Validation rules
37
-    */
36
+     * Validation rules
37
+     */
38 38
     public function rules()
39 39
     {
40 40
         return [
Please login to merge, or discard this patch.
Apps/Model/Front/Profile/FormSettings.php 1 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/Admin/Main/FormAddRoute.php 1 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/User/FormUserUpdate.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-    * Load user data on before method
43
-    */
42
+     * Load user data on before method
43
+     */
44 44
     public function before()
45 45
     {
46 46
         foreach ($this->getAllProperties() as $property => $old_data) {
Please login to merge, or discard this patch.
Apps/Model/Admin/User/FormUserGroupUpdate.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
     }
32 32
 
33 33
     /**
34
-    * Parse public attribute values from input object data
35
-    */
34
+     * Parse public attribute values from input object data
35
+     */
36 36
     public function before()
37 37
     {
38 38
         $this->name = $this->_role->name;
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-    * Display labels data
45
+     * Display labels data
46 46
      * @return array
47
-    */
47
+     */
48 48
     public function labels()
49 49
     {
50 50
         return [
Please login to merge, or discard this patch.
Apps/Model/Admin/Main/FormSettings.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@
 block discarded – undo
42 42
     public $trustedProxy;
43 43
 
44 44
     /**
45
-    * Set property values from configurations
46
-    */
45
+     * Set property values from configurations
46
+     */
47 47
     public function before()
48 48
     {
49 49
         // set default values
Please login to merge, or discard this patch.