Passed
Push — 0.8.x ( dc0566...6e510b )
by Alexander
06:23 queued 03:10
created

PrimeServiceProvider::provides()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Lenevor Framework
5
 *
6
 * LICENSE
7
 *
8
 * This source file is subject to the new BSD license that is bundled
9
 * with this package in the file license.md.
10
 * It is also available through the world-wide-web at this URL:
11
 * https://lenevor.com/license
12
 * If you did not receive a copy of the license and are unable to
13
 * obtain it through the world-wide-web, please send an email
14
 * to [email protected] so we can send you a copy immediately.
15
 *
16
 * @package     Lenevor
17
 * @subpackage  Base
18
 * @link        https://lenevor.com
19
 * @copyright   Copyright (c) 2019 - 2023 Alexander Campo <[email protected]>
20
 * @license     https://opensource.org/licenses/BSD-3-Clause New BSD license or see https://lenevor.com/license or see /license.md
21
 */
22
23
namespace Syscodes\Components\Core\Providers;
24
25
use Syscodes\Components\Support\ServiceProvider;
26
use Syscodes\Components\Contracts\Support\Deferrable;
27
use Syscodes\Bundles\ApplicationBundle\Console\Commands\AboutCommand;
28
29
/**
30
 * The Prime service provider allows the register of a namespace of 
31
 * all the commands necessary for operate the framewore from the CLI.
32
 */
33
class PrimeServiceProvider extends ServiceProvider implements Deferrable
34
{
35
    /**
36
     * The commands to be registered.
37
     * 
38
     * @var array $commands
39
     */
40
    protected $commands = [
41
        'About' => AboutCommand::class,
42
    ];
43
44
    /**
45
     * Register any application services.
46
     */
47
    public function register()
48
    {
49
        $this->registerCommands(array_merge(
50
            $this->commands,
51
            [],
52
        ));
53
    }
54
    
55
    /**
56
     * Register the given commands.
57
     * 
58
     * @param  array  $commands
59
     * 
60
     * @return void
61
     */
62
    protected function registerCommands(array $commands)
63
    {
64
        foreach ($commands as $commandName => $command) {
65
            $method = "register{$commandName}Command";
66
            
67
            if (method_exists($this, $method)) {
68
                $this->{$method}();
69
            } else {
70
                $this->app->singleton($command);
71
            }
72
        }
73
    }
74
    
75
    /**
76
     * Register the command.
77
     * 
78
     * @return void
79
     */
80
    protected function registerAboutCommand()
81
    {
82
        $this->app->singleton(AboutCommand::class, fn () => new AboutCommand);
83
    }
84
    
85
    /**
86
     * Get the services provided by the provider.
87
     * 
88
     * @return array
89
     */
90
    public function provides(): array
91
    {
92
        return array_merge(array_values($this->commands), []);
93
    }
94
}