Application   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace FondBot\Framework\Console;
6
7
use Illuminate\Contracts\Events\Dispatcher;
8
use Illuminate\Contracts\Container\Container;
9
use Illuminate\Console\Application as BaseApplication;
10
11
class Application extends BaseApplication
12
{
13
    public function __construct(Container $laravel, Dispatcher $events, $version)
14
    {
15
        parent::__construct($laravel, $events, $version);
16
17
        $this->setName('FondBot Framework');
18
    }
19
}
20