Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Arcanesoft\Foundation\Console; |
||
21 | protected function arcanesoftHeader() |
||
22 | { |
||
23 | $this->comment(' ___ ____ _________ _ _____________ ____ ____________'); |
||
24 | $this->comment(' / | / __ \/ ____/ | / | / / ____/ ___// __ \/ ____/_ __/'); |
||
25 | $this->comment(' / /| | / /_/ / / / /| | / |/ / __/ \__ \/ / / / /_ / / '); |
||
26 | $this->comment(' / ___ |/ _, _/ /___/ ___ |/ /| / /___ ___/ / /_/ / __/ / / '); |
||
27 | $this->comment('/_/ |_/_/ |_|\____/_/ |_/_/ |_/_____//____/\____/_/ /_/ '); |
||
28 | $this->line(''); |
||
29 | |||
30 | // Copyright |
||
31 | $this->comment('Version '.foundation()->version().' | 2015-'.date('Y').' | Created by ARCANEDEV(c)'); |
||
32 | $this->line(''); |
||
33 | } |
||
45 |