Completed
Push — dev5 ( 3b02fc...65792e )
by Ron
10:21
created
database/factories/FileLinkFilesFactory.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use App\Model;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(App\FileLinkFiles::class, function (Faker $faker) {
8
+$factory->define(App\FileLinkFiles::class, function(Faker $faker) {
9 9
     return [
10 10
         'link_id'  => factory(App\FileLinks::class)->create()->link_id,
11 11
         'file_id'  => factory(App\Files::class)->create()->file_id,
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
         'link_id'  => factory(App\FileLinks::class)->create()->link_id,
11 11
         'file_id'  => factory(App\Files::class)->create()->file_id,
12 12
         'user_id'  => factory(App\User::class)->create()->user_id,
13
-        'added_by' => NULL,
13
+        'added_by' => null,
14 14
         'upload'   => 0
15 15
     ];
16 16
 });
Please login to merge, or discard this patch.