Completed
Push — dev5 ( 65792e...e18bfd )
by Ron
10:21
created
database/factories/CustomerFilesFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     ];
13 13
 });
14 14
 
15
-$factory->define(App\CustomerFiles::class, function (Faker $faker) {
15
+$factory->define(App\CustomerFiles::class, function(Faker $faker) {
16 16
     return [
17 17
         'file_id' => factory(App\Files::class)->create()->file_id,
18 18
         'file_type_id' => 1,
Please login to merge, or discard this patch.
routes/web.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
         *   Tech Tip Routes
152 152
         *
153 153
         */
154
-        Route::prefix('tip')->name('tip.')->group(function(){
154
+        Route::prefix('tip')->name('tip.')->group(function() {
155 155
             
156 156
             
157 157
             
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
         *   Tech Tip Routes
152 152
         *
153 153
         */
154
-        Route::prefix('tip')->name('tip.')->group(function(){
154
+        Route::prefix('tip')->name('tip.')->group(function() {
155 155
             
156 156
             
157 157
             
Please login to merge, or discard this patch.
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.