Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 48 | protected function copyright(): void |
|
26 | { |
||
27 | // LOGO |
||
28 | 48 | $this->comment(" __ _ __ "); |
|
29 | 48 | $this->comment(" / / __ _ _ __ __ ___ _____| | / / __ _ _ __ __ _ "); |
|
30 | 48 | $this->comment(" / / / _` | '__/ _` \ \ / / _ \ |/ / / _` | '_ \ / _` |"); |
|
31 | 48 | $this->comment("/ /__| (_| | | | (_| |\ V / __/ / /__| (_| | | | | (_| |"); |
|
32 | 48 | $this->comment("\____/\__,_|_| \__,_| \_/ \___|_\____/\__,_|_| |_|\__, |"); |
|
33 | 48 | $this->comment(" |___/ "); |
|
34 | 48 | $this->line(''); |
|
35 | |||
36 | // Copyright |
||
37 | 48 | $this->comment('Version '.LaravelLang::VERSION.' - Created by ARCANEDEV'.chr(169)); |
|
38 | 48 | $this->line(''); |
|
39 | 48 | } |
|
40 | } |
||
41 |