Completed
Push — master ( de0375...413b94 )
by Derek Stephen
07:16
created

ConsoleApplication::getLongVersion()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 33
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 33
rs 8.8571
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace BoneMvc;
4
5
use Symfony\Component\Console\Application as SymfonyConsoleApplication;
6
7
class ConsoleApplication extends SymfonyConsoleApplication
8
{
9
    public function getLongVersion()
10
    {
11
        return "
12
                            7 ,::::::::                         
13
                          + :::::::::,  :                 ?     
14
                          :::::::::: ::::::~              7777  
15
      ,: 7               ::::::::: :: =7777~             7+777  
16
        +  77777           :::::::::: 777777777           ,77+77=7  
17
        ~77 :77777          ::::::=7,7777777777          77+777777  
18
        77777777:77777      :::,777 ?7777777777~     +7777777777I?  
19
    :777 7II7777777777  ::77     7~+     77:  ?7777777          
20
      =?       : I7777 = :       77:     ~7 777777 ,            
21
                     7 7 7      7  7     77,777 =               
22
                     ,7 777    7I  777I77?7: ,                  
23
                     , , 7777777    77777:                      
24
                       7:   7777  ??777? ~                      
25
                       :  ,7 7777777777 7I7 =                   
26
                     , ::::77=77777?77777+7777I ?               
27
                   777:: ::777:      +777 + ~77777              
28
               777777  :,:::777:     777        777777      I7  
29
     , 777777+I777    :::,::77777,~+7777I        ,,777I 777777, 
30
      7 7777I77,~     :::::,: 777777777~           ~=7777 77:7  
31
         77777 77 +      ,:::: ::7 777777I=               7777  77  
32
     ,77?777           : : :      = ,                 +777?77~  
33
     +777 7            :,:::~                            77I    
34
        77?              +::                                    
35
                         =::                                    
36
                          :           ____   __   __ _  ____  _  _  _  _   ___
37
                          :          (  _ \\ /  \\ (  ( \\(  __)( \\/ )/ )( \\ / __)
38
                                      ) _ ((  O )/    / ) _) / \\/ \\ \\/ /( (__
39
                                     (____/ \\__/ \\_)__)(____)\\_)(_/ \\__/  \\___)
40
";
41
    }
42
}