Application   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 6
c 0
b 0
f 0
ccs 0
cts 2
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A version() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace FondBot\Framework;
6
7
use FondBot\FondBot;
8
use Illuminate\Foundation\Application as BaseApplication;
9
10
class Application extends BaseApplication
11
{
12
    /** {@inheritdoc} */
13
    public function version(): string
14
    {
15
        return FondBot::VERSION;
16
    }
17
}
18