Completed
Push — master ( b2e536...a4e6dd )
by Arne
02:05
created

Application::getDefaultCommands()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 7
nc 1
nop 0
1
<?php
2
3
namespace Storeman\Cli;
4
5
class Application extends \Symfony\Component\Console\Application
6
{
7
    const LOGO =  <<<TXT
8
   ___           __   _      ___ 
9
  / _ | ________/ /  (_)  __/ _ \
10
 / __ |/ __/ __/ _ \/ / |/ / , _/
11
/_/ |_/_/  \__/_//_/_/|___/_/|_| 
12
13
14
TXT;
15
16
    public function getHelp()
17
    {
18
        return static::LOGO . parent::getHelp();
19
    }
20
}
21