Total Complexity | 4 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class StaticPageController extends Controller |
||
11 | { |
||
12 | private StaticPageService $staticPageService; |
||
13 | |||
14 | public function __construct( |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Show the about me page. |
||
22 | * |
||
23 | * @return \Illuminate\Contracts\Support\Renderable |
||
24 | */ |
||
25 | public function aboutMe() |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Show the treatments page. |
||
32 | * |
||
33 | * @return \Illuminate\Contracts\Support\Renderable |
||
34 | */ |
||
35 | public function treatments() |
||
36 | { |
||
37 | return view('pages.treatments'); |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * Show the Contact Improvisation page. |
||
42 | * |
||
43 | * @return \Illuminate\Contracts\Support\Renderable |
||
44 | * @throws \Spatie\ModelStatus\Exceptions\InvalidStatus |
||
45 | */ |
||
46 | public function contactImprovisation() |
||
52 | ]); |
||
53 | } |
||
55 |