Skip to content
This repository was archived by the owner on Nov 4, 2021. It is now read-only.

Commit 50bb43f

Browse files
lucasmichotStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 2c0b75c commit 50bb43f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+420
-427
lines changed

config/scout_elastic.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
return [
44
'client' => [
55
'hosts' => [
6-
env('SCOUT_ELASTIC_HOST', 'localhost:9200')
7-
]
6+
env('SCOUT_ELASTIC_HOST', 'localhost:9200'),
7+
],
88
],
99
'update_mapping' => env('SCOUT_ELASTIC_UPDATE_MAPPING', true),
1010
'indexer' => env('SCOUT_ELASTIC_INDEXER', 'single'),
11-
'document_refresh' => env('SCOUT_ELASTIC_DOCUMENT_REFRESH')
12-
];
11+
'document_refresh' => env('SCOUT_ELASTIC_DOCUMENT_REFRESH'),
12+
];

docker/laravel/app/Stubs/Car.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace App\Stubs;
44

5+
use ScoutElastic\Searchable;
56
use Illuminate\Database\Eloquent\Model;
67
use Illuminate\Database\Eloquent\Relations\BelongsTo;
7-
use ScoutElastic\Searchable;
88

99
class Car extends Model
1010
{
@@ -19,7 +19,7 @@ class Car extends Model
1919
* @var array
2020
*/
2121
protected $fillable = [
22-
'title'
22+
'title',
2323
];
2424

2525
/**
@@ -28,20 +28,20 @@ class Car extends Model
2828
protected $mapping = [
2929
'properties' => [
3030
'title' => [
31-
'type' => 'text'
31+
'type' => 'text',
3232
],
3333
'maker' => [
34-
'type' => 'keyword'
34+
'type' => 'keyword',
3535
],
3636
'created_at' => [
3737
'type' => 'date',
38-
'format' => 'yyyy-MM-dd HH:mm:ss'
38+
'format' => 'yyyy-MM-dd HH:mm:ss',
3939
],
4040
'updated_at' => [
4141
'type' => 'date',
42-
'format' => 'yyyy-MM-dd HH:mm:ss'
43-
]
44-
]
42+
'format' => 'yyyy-MM-dd HH:mm:ss',
43+
],
44+
],
4545
];
4646

4747
/**
@@ -53,7 +53,7 @@ public function maker()
5353
}
5454

5555
/**
56-
* @inheritdoc
56+
* {@inheritdoc}
5757
*/
5858
public function toSearchableArray()
5959
{

docker/laravel/app/Stubs/CarIndexConfigurator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace App\Stubs;
44

5-
use ScoutElastic\IndexConfigurator;
65
use ScoutElastic\Migratable;
6+
use ScoutElastic\IndexConfigurator;
77

88
class CarIndexConfigurator extends IndexConfigurator
99
{

docker/laravel/app/Stubs/Maker.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Maker extends Model
1111
* @var array
1212
*/
1313
protected $fillable = [
14-
'title'
14+
'title',
1515
];
1616

1717
/**
@@ -21,4 +21,4 @@ public function cars()
2121
{
2222
return $this->hasMany(Car::class);
2323
}
24-
}
24+
}

docker/laravel/database/migrations/2018_05_15_210500_create_cars_table.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

33
use App\Stubs\CarIndexConfigurator;
4-
use Illuminate\Support\Facades\Artisan;
54
use Illuminate\Support\Facades\Schema;
5+
use Illuminate\Support\Facades\Artisan;
66
use Illuminate\Database\Schema\Blueprint;
77
use Illuminate\Database\Migrations\Migration;
88

99
class CreateCarsTable extends Migration
1010
{
1111
/**
12-
* @inheritdoc
12+
* {@inheritdoc}
1313
*/
1414
public function up()
1515
{
@@ -27,15 +27,15 @@ public function up()
2727
}
2828

2929
/**
30-
* @inheritdoc
30+
* {@inheritdoc}
3131
*/
3232
public function down()
3333
{
3434
Artisan::call(
3535
'elastic:drop-index',
3636
['index-configurator' => CarIndexConfigurator::class]
3737
);
38-
38+
3939
Schema::dropIfExists('cars');
4040
}
4141
}

docker/laravel/database/migrations/2018_05_15_211500_create_makers_table.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class CreateMakersTable extends Migration
88
{
99
/**
10-
* @inheritdoc
10+
* {@inheritdoc}
1111
*/
1212
public function up()
1313
{
@@ -19,7 +19,7 @@ public function up()
1919
}
2020

2121
/**
22-
* @inheritdoc
22+
* {@inheritdoc}
2323
*/
2424
public function down()
2525
{

docker/laravel/database/seeds/CarsTableSeeder.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class CarsTableSeeder extends Seeder
88
{
99
/**
10-
* @inheritdoc
10+
* {@inheritdoc}
1111
*/
1212
public function run()
1313
{
@@ -21,7 +21,7 @@ public function run()
2121
->saveMany([
2222
new Car(['title' => 'A3']),
2323
new Car(['title' => 'A4']),
24-
new Car(['title' => 'Q3'])
24+
new Car(['title' => 'Q3']),
2525
]);
2626

2727
Maker::where('title', 'BMW')
@@ -30,7 +30,7 @@ public function run()
3030
->saveMany([
3131
new Car(['title' => '1 Series']),
3232
new Car(['title' => '3 Series']),
33-
new Car(['title' => 'X1'])
33+
new Car(['title' => 'X1']),
3434
]);
3535

3636
Maker::where('title', 'Volkswagen')
@@ -39,15 +39,15 @@ public function run()
3939
->saveMany([
4040
new Car(['title' => 'Golf']),
4141
new Car(['title' => 'Passat']),
42-
new Car(['title' => 'Tiguan'])
42+
new Car(['title' => 'Tiguan']),
4343
]);
4444

4545
Maker::where('title', 'Volvo')
4646
->firstOrFail()
4747
->cars()
4848
->saveMany([
4949
new Car(['title' => 'S60']),
50-
new Car(['title' => 'XC40'])
50+
new Car(['title' => 'XC40']),
5151
]);
5252

5353
Maker::where('title', 'Kia')
@@ -56,7 +56,7 @@ public function run()
5656
->saveMany([
5757
new Car(['title' => 'Rio']),
5858
new Car(['title' => 'Cerato']),
59-
new Car(['title' => 'Stinger'])
59+
new Car(['title' => 'Stinger']),
6060
]);
6161
}
6262
}

docker/laravel/database/seeds/DatabaseSeeder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
class DatabaseSeeder extends Seeder
66
{
77
/**
8-
* @inheritdoc
8+
* {@inheritdoc}
99
*/
1010
public function run()
1111
{
1212
$this->call([
1313
MakersTableSeeder::class,
14-
CarsTableSeeder::class
14+
CarsTableSeeder::class,
1515
]);
1616
}
1717
}

docker/laravel/database/seeds/MakersTableSeeder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class MakersTableSeeder extends Seeder
77
{
88
/**
9-
* @inheritdoc
9+
* {@inheritdoc}
1010
*/
1111
public function run()
1212
{

0 commit comments

Comments
 (0)