Skip to content

Commit

Permalink
fix styleci
Browse files Browse the repository at this point in the history
  • Loading branch information
milwad-dev committed Oct 13, 2023
1 parent 5547616 commit a3996aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/Task/Providers/TaskServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private function registerRoutes()
{
Route::middleware('api')
->prefix('api/'.config('app.version'))
->group(__DIR__ . '/../routes/api.php');
->group(__DIR__.'/../routes/api.php');
}

/**
Expand Down
1 change: 0 additions & 1 deletion Modules/Task/routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@
Route::group(['middleware' => 'auth:sanctum'], static function ($router) {
$router->apiResource('tasks', TaskController::class);
});

0 comments on commit a3996aa

Please sign in to comment.