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

IndexView   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 17
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A addCss() 0 3 1
A setTemplate() 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\Views;
20
21
use Alxarafe\Core\Base\View;
22
use Alxarafe\Core\Singletons\TemplateRender;
0 ignored issues
show
Bug introduced by
The type Alxarafe\Core\Singletons\TemplateRender was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
23
use DebugBar\DebugBarException;
24
25
/**
26
 * Class Login
27
 *
28
 * @package Alxarafe\Views
29
 */
30
class IndexView extends View
31
{
32
    /**
33
     * TODO: Undocummented
34
     */
35
    public function addCss()
36
    {
37
        parent::addCss();
38
//        $this->addToVar('cssCode', $this->addResource('/css/login', 'css'));
39
    }
40
41
    /**
42
     * Assign the template.
43
     */
44
    public function setTemplate(): void
45
    {
46
        $this->template = 'default';
47
    }
48
}
49