@@ -9,7 +9,7 @@ |
||
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; |
@@ -40,7 +40,7 @@ |
||
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 | } |
@@ -20,7 +20,7 @@ |
||
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 |
@@ -35,19 +35,19 @@ |
||
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 | }); |
@@ -12,10 +12,10 @@ |
||
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(' |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $recordsSince = TenantPerson::orderBy('updated_at', 'desc')->first()?->updated_at; |
34 | 34 | $this->info('Tenant people records syncronization since: '.($recordsSince ?: 'start')); |
35 | 35 | |
36 | - tenancy()->query()->cursor()->each(function (Tenant $tenant) use ($recordsSince) { |
|
36 | + tenancy()->query()->cursor()->each(function(Tenant $tenant) use ($recordsSince) { |
|
37 | 37 | try { |
38 | 38 | tenancy()->initialize($tenant); |
39 | 39 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | } |
45 | 45 | |
46 | 46 | $this->info('Processing tenant #'.$tenant->id.' records: '.(clone $tenantPersonQuery)->count()); |
47 | - $tenantPersonQuery->chunk(100, function ($people) use ($tenant) { |
|
47 | + $tenantPersonQuery->chunk(100, function($people) use ($tenant) { |
|
48 | 48 | // clear old records and push updated ones |
49 | 49 | TenantPerson::where('tenant_id', $tenant->id) |
50 | 50 | ->whereIn('tenant_person_id', $people->pluck('id')) |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $plan = $subscription['plan']; |
33 | 33 | if ($plan) { |
34 | 34 | $plan_nickname = $plan[['nickName']]; |
35 | - $roles= Role::where('name', strtolower($plan->nickname))->first(); |
|
35 | + $roles = Role::where('name', strtolower($plan->nickname))->first(); |
|
36 | 36 | if ($roles) { |
37 | 37 | $user->role_id = $roles->id; |
38 | 38 | $user->save(); |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | } |
43 | 43 | case "invoice.payment_failed" : |
44 | - $roles= Role::where('name', strtolower("free"))->first(); |
|
44 | + $roles = Role::where('name', strtolower("free"))->first(); |
|
45 | 45 | if ($roles) { |
46 | 46 | $user->role_id = $roles->id; |
47 | 47 | $user->save(); |
@@ -21,10 +21,11 @@ |
||
21 | 21 | $data = request()->all(); |
22 | 22 | $user = User::where('stripe_id', $data['data']['object']['customer'])->first(); |
23 | 23 | if ($user) { |
24 | - if ($data['type'] === 'customer.subscription.deleted' || customer.subscription.deleted) |
|
25 | - switch ($data['type']) { |
|
24 | + if ($data['type'] === 'customer.subscription.deleted' || customer.subscription.deleted) { |
|
25 | + switch ($data['type']) { |
|
26 | 26 | case "customer.subscription.deleted": |
27 | 27 | $user->role_id = 4; |
28 | + } |
|
28 | 29 | $user->save(); |
29 | 30 | break; |
30 | 31 | case "invoice.payment_succeeded": |