1 | <?php |
||
11 | class ContactsServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | /** |
||
14 | * The commands to be registered. |
||
15 | * |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $commands = [ |
||
19 | MigrateCommand::class => 'command.rinvex.contacts.migrate', |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function register() |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function boot() |
||
51 | |||
52 | /** |
||
53 | * Publish resources. |
||
54 | * |
||
55 | * @return void |
||
56 | */ |
||
57 | protected function publishResources() |
||
62 | |||
63 | /** |
||
64 | * Register console commands. |
||
65 | * |
||
66 | * @return void |
||
67 | */ |
||
68 | protected function registerCommands() |
||
79 | } |
||
80 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.