Completed
Branch master (908fd3)
by Sathish
01:53
created
src/Reports/UserReport.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
     }
95 95
     
96 96
     /**
97
-    * @param string $start
98
-    * @param string $end
99
-    * @param string $firstName
100
-    * @return string | false
101
-    */
97
+     * @param string $start
98
+     * @param string $end
99
+     * @param string $firstName
100
+     * @return string | false
101
+     */
102 102
     public function FilterByDate($start, $end)
103 103
     {
104 104
         $filter = false;
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-    * @param string $firstName
117
-    * @param string $filter
118
-    * @return string | false
119
-    */
116
+     * @param string $firstName
117
+     * @param string $filter
118
+     * @return string | false
119
+     */
120 120
     public function FilterByName($filter, $firstName)
121 121
     {
122 122
         if ($firstName) {
Please login to merge, or discard this patch.
src/Page/UserProfilePageController.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,18 +15,18 @@  discard block
 block discarded – undo
15 15
 class UserProfilePageController extends PageController
16 16
 {
17 17
     /**
18
-    * @var string
19
-    */
18
+     * @var string
19
+     */
20 20
     private static $url_segment = 'my-profile';
21 21
 
22 22
     /**
23
-    * @var array
24
-    */
23
+     * @var array
24
+     */
25 25
     private static $allowed_actions = array('ProfileForm');
26 26
 
27 27
     /**
28
-    * @var mixed
29
-    */
28
+     * @var mixed
29
+     */
30 30
     private $member = false;
31 31
 
32 32
     public function init()
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
     }
38 38
     
39 39
     /**
40
-    * Returns the profile form
41
-    * @return \UserManagement\Forms\ProfileForm
42
-    */
40
+     * Returns the profile form
41
+     * @return \UserManagement\Forms\ProfileForm
42
+     */
43 43
     public function ProfileForm()
44 44
     {
45 45
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     public function ProfileForm()
44 44
     {
45 45
 
46
-        $form =  new ProfileForm($this, 'ProfileForm');
46
+        $form = new ProfileForm($this, 'ProfileForm');
47 47
         $form->loadDataFrom($this->member);
48 48
         return $form;
49 49
     }
Please login to merge, or discard this patch.