| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | public function getLongVersion() |
||
| 17 | { |
||
| 18 | $art = <<<EOL |
||
| 19 | ___ ___ ___ ___ ___ |
||
| 20 | /__/\ / /\ / /\ / /\ / /\ |
||
| 21 | \ \:\ / /:/_ / /::\ / /:/_ / /:/ |
||
| 22 | \ \:\ / /:/ /\ / /:/\:\ / /:/ /\ / /:/ |
||
| 23 | ___ \ \:\ / /:/ /::\ / /:/~/:/ / /:/ /:/_ / /:/ ___ |
||
| 24 | /__/\ \__\:\ /__/:/ /:/\:\ /__/:/ /:/ /__/:/ /:/ /\ /__/:/ / /\ |
||
| 25 | \ \:\ / /:/ \ \:\/:/~/:/ \ \:\/:/ \ \:\/:/ /:/ \ \:\ / /:/ |
||
| 26 | \ \:\ /:/ \ \::/ /:/ \ \::/ \ \::/ /:/ \ \:\ /:/ |
||
| 27 | \ \:\/:/ \__\/ /:/ \ \:\ \ \:\/:/ \ \:\/:/ |
||
| 28 | \ \::/ /__/:/ \ \:\ \ \::/ \ \::/ |
||
| 29 | \__\/ \__\/ \__\/ \__\/ \__\/ |
||
| 30 | EOL; |
||
| 31 | |||
| 32 | return sprintf('<info>%s</info>', $art) . PHP_EOL . PHP_EOL . parent::getLongVersion() . ' by <comment>Mike Kamornikov</comment> and <comment>Denis Stiblo</comment>'; |
||
| 33 | } |
||
| 34 | |||
| 54 |