Passed
Push — master ( 530886...6bdffc )
by Josh
02:33
created

Application::getDefaultInputDefinition()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
c 0
b 0
f 0
dl 0
loc 8
rs 10
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: joshgulledge
5
 * Date: 2/15/18
6
 * Time: 2:43 PM
7
 */
8
9
namespace LCI\Blend;
10
11
use LCI\MODX\Console\Application as ConsoleApplication;
12
use Symfony\Component\Console\Input\InputArgument;
13
use Symfony\Component\Console\Input\InputDefinition;
14
use Symfony\Component\Console\Input\InputOption;
15
16
class Application extends ConsoleApplication
17
{
18
    protected static $logo = __DIR__ . '/art/blend.txt';
19
20
    protected static $name = 'Blend Console';
21
22
    protected static $version = '1.0.0 beta13';
23
}