Test Setup Failed
Branch master (295652)
by Bertrand
06:48
created
app/Src/UseCases/Domain/Invitation/RespondInvitationToAnOrganization.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,23 +39,23 @@
 block discarded – undo
39 39
         $organizationToJoin = $this->organizationRepository->get($organizationId);
40 40
 
41 41
         $currentUser = $this->authGateway->current();
42
-        if(isset($currentUser) && $currentUser->email() !== $email){
42
+        if (isset($currentUser) && $currentUser->email() !== $email) {
43 43
             $action = 'logout';
44 44
             $action .= !isset($user) ? '-register' : '-login';
45 45
 
46
-            if($action == 'logout-login') {
46
+            if ($action == 'logout-login') {
47 47
                 return $this->badUserLoginToAcceptAction($action, $organizationToJoin);
48 48
             }
49 49
             return $this->returnLogoutAction($action, $organizationToJoin, $email, $firstname, $lastname);
50 50
         }
51 51
 
52 52
 
53
-        if(!isset($user)){
53
+        if (!isset($user)) {
54 54
             return $this->returnRegisterAction($organizationId, $email, $firstname, $lastname);
55 55
         }
56 56
 
57 57
         $currentUser = $this->authGateway->current();
58
-        if(!isset($currentUser)){
58
+        if (!isset($currentUser)) {
59 59
             return $this->returnLoginAction($organizationToJoin);
60 60
         }
61 61
 
Please login to merge, or discard this patch.
app/Providers/AppServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -35,27 +35,27 @@
 block discarded – undo
35 35
     {
36 36
         $this->registerHelpers();
37 37
 
38
-        if(config('app.env') === 'testing'){
38
+        if (config('app.env') === 'testing') {
39 39
             $this->tuBinding();
40 40
         }
41
-        if(config('app.env') === 'testing-ti'){
41
+        if (config('app.env') === 'testing-ti') {
42 42
             $this->tiBinding();
43 43
         }
44
-        if(config('app.env') === 'local' || config('app.env') === 'production'){
44
+        if (config('app.env') === 'local' || config('app.env') === 'production') {
45 45
             $this->prodBinding();
46 46
         }
47 47
     }
48 48
 
49 49
     public function boot()
50 50
     {
51
-        if(config('app.env') !== 'testing' && config('app.env') !== 'testing-ti') {
51
+        if (config('app.env') !== 'testing' && config('app.env') !== 'testing-ti') {
52 52
             Schema::defaultStringLength(191);
53 53
         }
54 54
     }
55 55
 
56 56
     private function registerHelpers(): void
57 57
     {
58
-        foreach (glob(app_path() . '/Src/Utils/Helpers/*.php') as $filename) {
58
+        foreach (glob(app_path().'/Src/Utils/Helpers/*.php') as $filename) {
59 59
             require_once($filename);
60 60
         }
61 61
     }
Please login to merge, or discard this patch.
app/Http/Controllers/UsersController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,12 +26,12 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function listUsers(string $organizationId, Request $request, ListUsers $listUsers)
28 28
     {
29
-        $page = $request->input('start')/10 + 1;
29
+        $page = $request->input('start')/10+1;
30 30
 
31 31
         $users = $listUsers->list($organizationId, $page, 10);
32 32
         $total = init($users['total'], 0);
33 33
         $list = [];
34
-        foreach ($users['list'] as $user){
34
+        foreach ($users['list'] as $user) {
35 35
             $user = $user->toArray();
36 36
             $list[] = [
37 37
                 '',
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     public function editShowForm(string $userId, GetUser $getUser, GetOrganization $getOrganization, GetUserStats $getUserStats)
52 52
     {
53 53
         $user = $getUser->get($userId);
54
-        if($user->organizationId() !== null) {
54
+        if ($user->organizationId() !== null) {
55 55
             $organization = $getOrganization->get($user->organizationId());
56 56
         }
57 57
         $stats = $getUserStats->get($userId);
@@ -88,11 +88,11 @@  discard block
 block discarded – undo
88 88
     public function delete(string $userId, Request $request, DeleteUser $deleteUser)
89 89
     {
90 90
         $redirect = 'back';
91
-        if($userId === Auth::id()){
91
+        if ($userId === Auth::id()) {
92 92
             $redirect = 'login';
93 93
         }
94 94
         $deleteUser->delete($userId);
95
-        if($redirect === 'login') {
95
+        if ($redirect === 'login') {
96 96
             return redirect()->route('login');
97 97
         }
98 98
         $request->session()->flash('notif_msg', __('users.message.user.deleted'));
Please login to merge, or discard this patch.