Passed
Pull Request — master (#2380)
by
unknown
09:08
created
app/Forms/Builders/FamilyForm.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         return $this->form
24 24
         ->options('husband_id', Person::all())
25 25
         ->options('wife_id', Person::all())
26
-   //     ->options('type_id', Type::all())
26
+    //     ->options('type_id', Type::all())
27 27
         ->options('child_id', Person::all())
28 28
         ->create();
29 29
     }
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
         ->options('husband_id', Person::all())
35 35
         ->options('wife_id', Person::all())
36 36
         ->append('family_id', $family->id)
37
-         ->value('child_id', $family->children)
38
-         ->options('child_id', Person::all())
37
+            ->value('child_id', $family->children)
38
+            ->options('child_id', Person::all())
39 39
         ->edit($family);
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
app/Forms/Builders/SourceForm.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     public function create()
24 24
     {
25 25
         return $this->form
26
-  //  ->options('type_id', Type::all())
26
+    //  ->options('type_id', Type::all())
27 27
     ->options('author_id', Author::all())
28 28
     ->options('publication_id', Publication::all())
29 29
     ->options('repository_id', Repository::all())
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     public function edit(Source $source)
34 34
     {
35 35
         return $this->form
36
-  //  ->options('type_id', Type::all())
36
+    //  ->options('type_id', Type::all())
37 37
     ->options('author_id', Author::all())
38 38
     ->options('publication_id', Publication::all())
39 39
     ->options('repository_id', Repository::all())
Please login to merge, or discard this patch.
app/Tenant/Manager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
 
149 149
     public function storage(): Filesystem
150 150
     {
151
-        if (! $this->hasStoragePartition()) {
151
+        if (!$this->hasStoragePartition()) {
152 152
             $this->makeStoragePartition();
153 153
         }
154 154
 
Please login to merge, or discard this patch.
app/Tenant/Middleware/Multitenancy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 {
13 13
     public function handle($request, Closure $next)
14 14
     {
15
-        if (! $request->user()) {
15
+        if (!$request->user()) {
16 16
             return $next($request);
17 17
         }
18 18
 
Please login to merge, or discard this patch.
app/Traits/TenantConnectionResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public function getConnectionName()
11 11
     {
12
-        if (! App::runningUnitTests()) {
12
+        if (!App::runningUnitTests()) {
13 13
             if (Auth::check()) {
14 14
                 $user = \Auth::user();
15 15
                 $role_id = $user->role_id;
Please login to merge, or discard this patch.
app/Traits/UniqueStringTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             // If unique is still false at this point
41 41
             // it will just repeat all the steps until
42 42
             // it has generated a random string of characters
43
-        } while (! $unique);
43
+        } while (!$unique);
44 44
 
45 45
         return $random;
46 46
     }
Please login to merge, or discard this patch.
app/Traits/ActivationTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
     public function initiateEmailActivationApi(User $user)
22 22
     {
23
-        if (! config('settings.activation') || ! $this->validateEmail($user)) {
23
+        if (!config('settings.activation') || !$this->validateEmail($user)) {
24 24
             return true;
25 25
         }
26 26
 
Please login to merge, or discard this patch.
app/Tables/Builders/PersonTable.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,19 +35,19 @@
 block discarded – undo
35 35
             people.titl AS title, people.givn, people.surn,  people.appellative, people.email, people.phone,
36 36
             people.birthday, people.deathday, CASE WHEN users.id is null THEN 0 ELSE 1 END as "user",
37 37
             companies.name as company, people.created_at
38
-        ')->leftJoin('users', function ($join) use ($userId) {
38
+        ')->leftJoin('users', function($join) use ($userId) {
39 39
             $join->on('people.id', '=', 'users.person_id')
40 40
             ->where('users.id', $userId);
41 41
         })
42 42
             ->leftJoin(
43 43
                 'company_person',
44
-                function ($join) use ($userId) {
44
+                function($join) use ($userId) {
45 45
                     $join
46 46
                     ->on('people.id', '=', 'company_person.person_id')
47 47
                     ->where('company_person.company_id', $userId)
48 48
                     ->where('company_person.is_main', true);
49 49
                 }
50
-            )->leftJoin('companies', function ($join) use ($userId) {
50
+            )->leftJoin('companies', function($join) use ($userId) {
51 51
                 $join->on('company_person.company_id', '=', 'companies.id')
52 52
                     ->where('companies.id', $userId);
53 53
             });
Please login to merge, or discard this patch.
app/Tables/Builders/FamilyTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
 
13 13
     public function query(): Builder
14 14
     {
15
-        return Family::leftJoin('people as husband', function ($join) {
15
+        return Family::leftJoin('people as husband', function($join) {
16 16
             $join->on('husband.id', '=', 'families.husband_id');
17 17
         })
18
-            ->leftJoin('people as wife', function ($join) {
18
+            ->leftJoin('people as wife', function($join) {
19 19
                 $join->on('wife.id', '=', 'families.wife_id');
20 20
             })
21 21
             ->select(\DB::raw('
Please login to merge, or discard this patch.