Completed
Push — master ( f3696c...d9df82 )
by Arthur
12:36
created
app/Http/Controllers/MembersController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     public function index()
34 34
     {
35
-        $users = $this->userRepository->getActivePublicList(!\Auth::guest());
35
+        $users = $this->userRepository->getActivePublicList( ! \Auth::guest());
36 36
         return \View::make('members.index')->withUsers($users);
37 37
     }
38 38
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             return \Response::make('', 404);
45 45
         }
46 46
 
47
-        if (!$user->active) {
47
+        if ( ! $user->active) {
48 48
             return \Response::make('', 404);
49 49
         }
50 50
 
Please login to merge, or discard this patch.