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