Completed
Push — master ( ab9b64...d071e5 )
by Manu
02:02
created
src/Http/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php
2
-Route::group(['middleware' => 'auth'], function() {
2
+Route::group([ 'middleware' => 'auth' ], function() {
3 3
     Route::resource('inventory', 'InventoryController');
4 4
 });
5 5
\ No newline at end of file
Please login to merge, or discard this patch.
src/Validators/InventoryValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 class InventoryValidator extends LaravelValidator
6 6
 {
7 7
     protected $rules = [
8
-        ValidatorInterface::RULE_CREATE => [],
9
-        ValidatorInterface::RULE_UPDATE => [],
8
+        ValidatorInterface::RULE_CREATE => [ ],
9
+        ValidatorInterface::RULE_UPDATE => [ ],
10 10
     ];
11 11
 }
12 12
\ No newline at end of file
Please login to merge, or discard this patch.