Test Failed
Push — main ( a8a1f8...d105a1 )
by Rafael
11:47
created

Init   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A setView() 0 3 1
1
<?php
2
/**
3
 * Copyright (C) 2022-2023  Rafael San José Tovar   <[email protected]>
4
 *
5
 * This program is free software; you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation; either version 3 of the License, or
8
 * (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17
 */
18
19
namespace Alxarafe\Controllers;
20
21
use Alxarafe\Core\Base\Controller;
22
use Alxarafe\Core\Base\View;
23
use Alxarafe\Views\IndexView;
24
25
/**
26
 * Class Init
27
 *
28
 *
29
 *
30
 * @author  Rafael San José Tovar <[email protected]>
31
 * @version 08 2021
32
 *
33
 * @package Modules\Main
34
 */
35
class Init extends Controller
36
{
37
    /**
38
     * @throws \DebugBar\DebugBarException
39
     */
40
    public function setView(): View
41
    {
42
        return new IndexView($this);
43
    }
44
}