@@ -2,7 +2,7 @@ |
||
2 | 2 | |
3 | 3 | interface SearchRepositoryInterface |
4 | 4 | { |
5 | - public function create($userId = null, $data = []); |
|
5 | + public function create($userId = null, $data = [ ]); |
|
6 | 6 | |
7 | 7 | public function getActive($userEmail = null); |
8 | 8 | } |
@@ -6,13 +6,13 @@ |
||
6 | 6 | |-------------------------------------------------------------------------- |
7 | 7 | */ |
8 | 8 | |
9 | -$factory->define(\JobApis\JobsToMail\Models\Search::class, function (Faker\Generator $faker) { |
|
9 | +$factory->define(\JobApis\JobsToMail\Models\Search::class, function(Faker\Generator $faker) { |
|
10 | 10 | return [ |
11 | 11 | 'keyword' => $faker->word(), |
12 | 12 | 'location' => $faker->word().', '.$this->faker->word(), |
13 | 13 | ]; |
14 | 14 | }); |
15 | -$factory->state(\JobApis\JobsToMail\Models\Search::class, 'deleted', function (Faker\Generator $faker) { |
|
15 | +$factory->state(\JobApis\JobsToMail\Models\Search::class, 'deleted', function(Faker\Generator $faker) { |
|
16 | 16 | return [ |
17 | 17 | 'deleted_at' => $faker->dateTimeThisYear(), |
18 | 18 | ]; |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('notifications', function (Blueprint $table) { |
|
15 | + Schema::create('notifications', function(Blueprint $table) { |
|
16 | 16 | $table->uuid('id')->primary(); |
17 | 17 | $table->string('type'); |
18 | 18 | $table->uuid('notifiable_id'); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | { |
34 | 34 | parent::boot(); |
35 | 35 | |
36 | - static::creating(function ($model) { |
|
36 | + static::creating(function($model) { |
|
37 | 37 | $model->{$model->getKeyName()} = Uuid::uuid4(); |
38 | 38 | }); |
39 | 39 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | */ |
56 | 56 | public function scopeActive($query) |
57 | 57 | { |
58 | - return $query->whereHas('user', function ($query) { |
|
58 | + return $query->whereHas('user', function($query) { |
|
59 | 59 | return $query->confirmed(); |
60 | 60 | }); |
61 | 61 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | public function scopeWhereUserEmail($query, $email = null) |
69 | 69 | { |
70 | - return $query->whereHas('user', function ($query) use ($email) { |
|
70 | + return $query->whereHas('user', function($query) use ($email) { |
|
71 | 71 | return $query->where('email', $email); |
72 | 72 | }); |
73 | 73 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | */ |
80 | 80 | public function scopeWhereUserId($query, $id = null) |
81 | 81 | { |
82 | - return $query->whereHas('user', function ($query) use ($id) { |
|
82 | + return $query->whereHas('user', function($query) use ($id) { |
|
83 | 83 | return $query->where('id', $id); |
84 | 84 | }); |
85 | 85 | } |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -use Illuminate\Support\Facades\Schema; |
|
4 | -use Illuminate\Database\Schema\Blueprint; |
|
5 | 3 | use Illuminate\Database\Migrations\Migration; |
4 | +use Illuminate\Database\Schema\Blueprint; |
|
5 | +use Illuminate\Support\Facades\Schema; |
|
6 | 6 | |
7 | 7 | class CreateTokensTable extends Migration |
8 | 8 | { |
@@ -13,14 +13,14 @@ discard block |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('recruiters', function (Blueprint $table) { |
|
16 | + Schema::create('recruiters', function(Blueprint $table) { |
|
17 | 17 | $table->uuid('id')->primary(); |
18 | 18 | $table->string('name')->unique(); |
19 | 19 | $table->string('url')->nullable(); |
20 | 20 | $table->timestamps(); |
21 | 21 | }); |
22 | 22 | |
23 | - Schema::table('searches', function (Blueprint $table) { |
|
23 | + Schema::table('searches', function(Blueprint $table) { |
|
24 | 24 | $table->boolean('no_recruiters')->default(false); |
25 | 25 | }); |
26 | 26 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | */ |
33 | 33 | public function down() |
34 | 34 | { |
35 | - Schema::table('searches', function (Blueprint $table) { |
|
35 | + Schema::table('searches', function(Blueprint $table) { |
|
36 | 36 | $table->dropColumn('no_recruiters'); |
37 | 37 | }); |
38 | 38 |
@@ -22,7 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | // Make sure this search wants to filter recruiters |
24 | 24 | if ($search->no_recruiters === true) { |
25 | - return array_filter($jobs, function ($job) { |
|
25 | + return array_filter($jobs, function($job) { |
|
26 | 26 | // Make sure this job has a company |
27 | 27 | if (isset($job->company)) { |
28 | 28 | // Make sure this company is not a recruiter |
@@ -1,20 +1,20 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (! empty($greeting)) { |
|
3 | +if (!empty($greeting)) { |
|
4 | 4 | echo $greeting, "\n\n"; |
5 | 5 | } else { |
6 | 6 | echo $level == 'error' ? 'Whoops!' : 'Hello!', "\n\n"; |
7 | 7 | } |
8 | 8 | |
9 | -if (! empty($introLines)) { |
|
9 | +if (!empty($introLines)) { |
|
10 | 10 | echo implode("\n", $introLines), "\n\n"; |
11 | 11 | } |
12 | 12 | |
13 | 13 | if (isset($jobListings)) { |
14 | 14 | foreach ($jobListings as $listing) { |
15 | - echo $listing['title'].$listing['company'].$listing['location'].": ".$listing['link'], "\n"; |
|
16 | - if ($listing['date']) { |
|
17 | - echo "Posted on {$listing['date']}", "\n\n"; |
|
15 | + echo $listing[ 'title' ].$listing[ 'company' ].$listing[ 'location' ].": ".$listing[ 'link' ], "\n"; |
|
16 | + if ($listing[ 'date' ]) { |
|
17 | + echo "Posted on {$listing[ 'date' ]}", "\n\n"; |
|
18 | 18 | } |
19 | 19 | } |
20 | 20 | } |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | echo "{$actionText}: {$actionUrl}", "\n\n"; |
24 | 24 | } |
25 | 25 | |
26 | -if (! empty($outroLines)) { |
|
26 | +if (!empty($outroLines)) { |
|
27 | 27 | echo implode("\n", $outroLines), "\n\n"; |
28 | 28 | } |
29 | 29 |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php namespace JobApis\JobsToMail\Http\Controllers; |
2 | 2 | |
3 | +use Illuminate\Foundation\Validation\ValidatesRequests; |
|
3 | 4 | use Illuminate\Http\Request; |
4 | 5 | use Illuminate\Routing\Controller as BaseController; |
5 | -use Illuminate\Foundation\Validation\ValidatesRequests; |
|
6 | 6 | use JobApis\JobsToMail\Http\Requests\CreateUser; |
7 | 7 | use JobApis\JobsToMail\Repositories\Contracts\UserRepositoryInterface; |
8 | 8 |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function login(LoginUser $request) |
35 | 35 | { |
36 | - $email = $request->only('email')['email']; |
|
36 | + $email = $request->only('email')[ 'email' ]; |
|
37 | 37 | |
38 | 38 | $message = $this->dispatchNow(new SendLoginMessage($email)); |
39 | 39 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | */ |
60 | 60 | public function postConfirm(Request $request) |
61 | 61 | { |
62 | - return $this->confirm($request, $request->only('token')['token']); |
|
62 | + return $this->confirm($request, $request->only('token')[ 'token' ]); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -29,7 +29,7 @@ |
||
29 | 29 | * Get the notification's delivery channels. |
30 | 30 | * |
31 | 31 | * @param mixed $notifiable |
32 | - * @return array |
|
32 | + * @return string[] |
|
33 | 33 | */ |
34 | 34 | public function via($notifiable) |
35 | 35 | { |
@@ -1,9 +1,9 @@ |
||
1 | 1 | <?php namespace JobApis\JobsToMail\Notifications; |
2 | 2 | |
3 | 3 | use Illuminate\Bus\Queueable; |
4 | -use Illuminate\Notifications\Notification; |
|
5 | 4 | use Illuminate\Contracts\Queue\ShouldQueue; |
6 | 5 | use Illuminate\Notifications\Messages\MailMessage; |
6 | +use Illuminate\Notifications\Notification; |
|
7 | 7 | use JobApis\JobsToMail\Models\Token; |
8 | 8 | |
9 | 9 | class TokenGenerated extends Notification implements ShouldQueue |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function via($notifiable) |
35 | 35 | { |
36 | - return ['mail']; |
|
36 | + return [ 'mail' ]; |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | { |
47 | 47 | $url = config('app.url').'users/confirm/'.$this->token; |
48 | 48 | $message = new MailMessage; |
49 | - $message->viewData['user_id'] = $notifiable->id; |
|
49 | + $message->viewData[ 'user_id' ] = $notifiable->id; |
|
50 | 50 | return $message |
51 | 51 | ->subject('Confirm your email address to start receiving jobs') |
52 | 52 | ->greeting('Thank you for joining JobsToMail.com.') |