Passed
Pull Request — master (#8)
by nguereza
02:00
created
storage/migrations/20231207_053927_add_product_categories_table.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
     public function up(): void
13 13
     {
14 14
         //Action when migrate up
15
-        $this->create('product_categories', function (CreateTable $table) {
15
+        $this->create('product_categories', function(CreateTable $table) {
16 16
             $table->integer('id')
17 17
                   ->autoincrement()
18 18
                  ->primary();
Please login to merge, or discard this patch.
app/Provider/ProductServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     */
31 31
     public function addRoutes(Router $router): void
32 32
     {
33
-        $router->group('/product', function (Router $router) {
33
+        $router->group('/product', function(Router $router) {
34 34
             $router->resource('/category', CategoryAction::class, 'product_category');
35 35
         });
36 36
     }
Please login to merge, or discard this patch.