Completed
Push — master ( 816440...cac82f )
by Vladimir
12:37
created

Application::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 3
dl 0
loc 6
ccs 0
cts 4
cp 0
crap 2
rs 9.4285
c 0
b 0
f 0
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