Completed
Push — master ( 11a0f2...1d683d )
by Karl
10s
created
config/database.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,18 +2,18 @@
 block discarded – undo
2 2
 if (env("DATABASE_URL") && env('DB_CONNECTION', 'pgsql_heroku')) {
3 3
     $pgsql_heroku = [
4 4
         'driver' => 'pgsql',
5
-        'host' => parse_url(getenv("DATABASE_URL"))["host"],
6
-        'port' => parse_url(getenv("DATABASE_URL"))["port"],
7
-        'database' => substr(parse_url(getenv("DATABASE_URL"))["path"], 1),
8
-        'username' => parse_url(getenv("DATABASE_URL"))["user"],
9
-        'password' => parse_url(getenv("DATABASE_URL"))["pass"],
5
+        'host' => parse_url(getenv("DATABASE_URL"))[ "host" ],
6
+        'port' => parse_url(getenv("DATABASE_URL"))[ "port" ],
7
+        'database' => substr(parse_url(getenv("DATABASE_URL"))[ "path" ], 1),
8
+        'username' => parse_url(getenv("DATABASE_URL"))[ "user" ],
9
+        'password' => parse_url(getenv("DATABASE_URL"))[ "pass" ],
10 10
         'charset' => 'utf8',
11 11
         'prefix' => '',
12 12
         'schema' => 'public',
13 13
         'sslmode' => 'prefer',
14 14
     ];
15 15
 } else {
16
-    $pgsql_heroku = [];
16
+    $pgsql_heroku = [ ];
17 17
 }
18 18
 
19 19
 return [
Please login to merge, or discard this patch.
app/Models/Token.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     {
35 35
         parent::boot();
36 36
 
37
-        static::creating(function ($model) {
37
+        static::creating(function($model) {
38 38
             $model->{$model->getKeyName()} = Uuid::uuid4();
39 39
         });
40 40
     }
Please login to merge, or discard this patch.
database/migrations/2016_09_25_145250_create_queue_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('queue', function (Blueprint $table) {
16
+        Schema::create('queue', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('queue');
19 19
             $table->longText('payload');
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
             $table->unsignedInteger('reserved_at')->nullable();
22 22
             $table->unsignedInteger('available_at');
23 23
             $table->unsignedInteger('created_at');
24
-            $table->index(['queue', 'reserved_at']);
24
+            $table->index([ 'queue', 'reserved_at' ]);
25 25
         });
26 26
     }
27 27
 
Please login to merge, or discard this patch.
database/migrations/2016_09_25_145354_create_failed_queue_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('failed_queue', function (Blueprint $table) {
16
+        Schema::create('failed_queue', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->text('connection');
19 19
             $table->text('queue');
Please login to merge, or discard this patch.
database/factories/TokenFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 |--------------------------------------------------------------------------
7 7
 */
8 8
 
9
-$factory->define(\JobApis\JobsToMail\Models\Token::class, function (Faker\Generator $faker) {
9
+$factory->define(\JobApis\JobsToMail\Models\Token::class, function(Faker\Generator $faker) {
10 10
     return [
11 11
         'user_id' => null,
12 12
         'type' => 'confirm',
Please login to merge, or discard this patch.
app/Jobs/CreateUserAndSearch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Create a new job instance.
17 17
      */
18
-    public function __construct($data = [])
18
+    public function __construct($data = [ ])
19 19
     {
20 20
         $this->data = $data;
21 21
     }
Please login to merge, or discard this patch.
app/Repositories/Contracts/SearchRepositoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Repositories/SearchRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
      *
28 28
      * @return Search
29 29
      */
30
-    public function create($userId = null, $data = [])
30
+    public function create($userId = null, $data = [ ])
31 31
     {
32 32
         return $this->searches->create(
33
-            array_merge(['user_id' => $userId], $data)
33
+            array_merge([ 'user_id' => $userId ], $data)
34 34
         );
35 35
     }
36 36
 
Please login to merge, or discard this patch.
database/factories/SearchFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
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
     ];
Please login to merge, or discard this patch.