File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 12
12
use OpenApi \Attributes as OA ;
13
13
14
14
#[OA \Info(
15
- version: '0.1 ' ,
15
+ version: 'v1.0 ' ,
16
16
title: 'TalentPulse API ' ,
17
17
)]
18
18
#[OA \Server(
@@ -99,6 +99,9 @@ public function boot(): void
99
99
$ router ->middleware ('api ' )
100
100
->group (base_path ('routes/api.php ' ));
101
101
102
+ $ router ->middleware ('api ' )
103
+ ->group (base_path ('routes/api/v1.php ' ));
104
+
102
105
$ router ->middleware ('web ' )
103
106
->group (base_path ('routes/web.php ' ));
104
107
});
Original file line number Diff line number Diff line change 1
1
openapi : 3.0.0
2
2
info :
3
3
title : ' TalentPulse API'
4
- version : ' 0.1 '
4
+ version : v1.0
5
5
servers :
6
6
-
7
7
url : ' https://talentpulse-backend.localhost'
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ declare (strict_types=1 );
4
+
5
+ use App \Courses \Http \Controllers \CourseController ;
6
+ use Illuminate \Routing \Router ;
7
+
8
+ /** @var Router $router */
9
+
You can’t perform that action at this time.
0 commit comments