Passed
Pull Request — master (#1928)
by Janko
12:21
created

NavPanelButton   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 14
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
A isDisabled() 0 4 1
A getLabel() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Stu\Lib\Map\NavPanel;
6
7
use Override;
0 ignored issues
show
Bug introduced by
The type Override 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...
8
9
final class NavPanelButton implements NavPanelButtonInterface
10
{
11
    public function __construct(private string $label, private bool $disabled = false) {}
12
13
    #[Override]
14
    public function getLabel(): string
15
    {
16
        return $this->label;
17
    }
18
19
    #[Override]
20
    public function isDisabled(): bool
21
    {
22
        return $this->disabled;
23
    }
24
}
25