Completed
Branch master (8294f5)
by Sathish
01:47
created
src/Forms/ProfileForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,11 +55,11 @@
 block discarded – undo
55 55
             try {
56 56
                 $form->saveInto($member);
57 57
                 $member->write();
58
-                $msg = $this->getCustomMessage('ProfileUpdateSuccess')!=""
58
+                $msg = $this->getCustomMessage('ProfileUpdateSuccess') != ""
59 59
                     ? $this->getCustomMessage('ProfileUpdateSuccess') : "Profile updated!";
60 60
                 $form->sessionMessage($msg, 'good');
61 61
             } catch (\Exception $e) {
62
-                $msg = $this->getCustomMessage('ProfileUpdatError')!=""
62
+                $msg = $this->getCustomMessage('ProfileUpdatError') != ""
63 63
                     ? $this->getCustomMessage('ProfileUpdatError') : "Technical issue, Profile not updated!";
64 64
                 $form->sessionMessage($msg, 'bad');
65 65
             }
Please login to merge, or discard this patch.
tests/Pages/LostPasswordPageTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     public function testfindlink()
19 19
     {
20 20
        
21
-        $page = $this->get("forgotten-password/");  // attempt to access the Lost Forgot Page
21
+        $page = $this->get("forgotten-password/"); // attempt to access the Lost Forgot Page
22 22
         $this->assertEquals(200, $page->getStatusCode(), "a page should load");
23 23
     }
24 24
 
Please login to merge, or discard this patch.