Completed
Push — master ( 37cb15...9881f1 )
by Mike
42s queued 11s
created
tests/database/factories/BookFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use GeneaLabs\LaravelModelCaching\Tests\Fixtures\Book;
6 6
 use GeneaLabs\LaravelModelCaching\Tests\Fixtures\Publisher;
7 7
 
8
-$factory->define(Book::class, function (Faker $faker) {
8
+$factory->define(Book::class, function(Faker $faker) {
9 9
     return [
10 10
         "author_id" => 1,
11 11
         'title' => $faker->title,
Please login to merge, or discard this patch.
tests/database/migrations/2017_09_21_010110_create_printers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('printers', function (Blueprint $table) {
10
+        Schema::create('printers', function(Blueprint $table) {
11 11
             $table->increments('id');
12 12
             $table->unsignedInteger('book_id');
13 13
             $table->timestamps();
Please login to merge, or discard this patch.
tests/database/migrations/2018_01_01_000001_create_action_events_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('action_events', function (Blueprint $table) {
16
+        Schema::create('action_events', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->char('batch_id', 36);
19 19
             $table->unsignedBigInteger('user_id')->index();
Please login to merge, or discard this patch.
tests/database/migrations/2017_09_21_010109_create_books.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('books', function (Blueprint $table) {
10
+        Schema::create('books', function(Blueprint $table) {
11 11
             $table->increments('id');
12 12
             $table->unsignedInteger('author_id');
13 13
             $table->unsignedInteger('publisher_id');
Please login to merge, or discard this patch.
tests/database/migrations/2017_09_21_010055_create_authors.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('authors', function (Blueprint $table) {
10
+        Schema::create('authors', function(Blueprint $table) {
11 11
             $table->increments('id');
12 12
             $table->timestamps();
13 13
             $table->softDeletes();
Please login to merge, or discard this patch.
tests/database/migrations/2019_09_15_100001_create_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('users', function (Blueprint $table) {
10
+        Schema::create('users', function(Blueprint $table) {
11 11
             $table->bigIncrements('id');
12 12
             $table->unsignedBigInteger("supplier_id");
13 13
             $table->timestamps();
Please login to merge, or discard this patch.
tests/database/migrations/2017_09_21_010100_create_publishers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('publishers', function (Blueprint $table) {
10
+        Schema::create('publishers', function(Blueprint $table) {
11 11
             $table->increments('id');
12 12
             $table->timestamps();
13 13
 
Please login to merge, or discard this patch.
tests/database/migrations/2018_06_03_202000_create_comments.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('comments', function (Blueprint $table) {
10
+        Schema::create('comments', function(Blueprint $table) {
11 11
             $table->increments('id');
12 12
             $table->timestamps();
13 13
 
Please login to merge, or discard this patch.
tests/database/migrations/2019_09_15_100003_create_posts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('posts', function (Blueprint $table) {
10
+        Schema::create('posts', function(Blueprint $table) {
11 11
             $table->bigIncrements('id');
12 12
             $table->timestamps();
13 13
 
Please login to merge, or discard this patch.