Completed
Push — master ( 7187a0...60d66c )
by Mike
02:58
created
tests/database/migrations/2017_09_21_201000_create_stores.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('stores', function (Blueprint $table) {
10
+        Schema::create('stores', function(Blueprint $table) {
11 11
             $table->increments('id');
12 12
             $table->timestamps();
13 13
 
Please login to merge, or discard this patch.
tests/database/factories/StoreFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Faker\Generator as Faker;
4 4
 use GeneaLabs\LaravelModelCaching\Tests\Fixtures\Store;
5 5
 
6
-$factory->define(Store::class, function (Faker $faker) {
6
+$factory->define(Store::class, function(Faker $faker) {
7 7
     return [
8 8
         'address' => $faker->address,
9 9
         'name' => $faker->company,
Please login to merge, or discard this patch.
tests/database/factories/ProfileFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Faker\Generator as Faker;
4 4
 use GeneaLabs\LaravelModelCaching\Tests\Fixtures\Profile;
5 5
 
6
-$factory->define(Profile::class, function (Faker $faker) {
6
+$factory->define(Profile::class, function(Faker $faker) {
7 7
     return [
8 8
         'first_name' => $faker->firstName,
9 9
         'first_name' => $faker->lastName,
Please login to merge, or discard this patch.