Passed
Push — stable ( f958a0...2a58cd )
by Nuno
04:01
created

Installer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 18
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A install() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * This file is part of Laravel Zero.
7
 *
8
 * (c) Nuno Maduro <[email protected]>
9
 *
10
 *  For the full copyright and license information, please view the LICENSE
11
 *  file that was distributed with this source code.
12
 */
13
14
namespace LaravelZero\Framework\Components\Menu;
15
16
use LaravelZero\Framework\Components\AbstractInstaller;
17
18
/**
19
 * @internal
20
 */
21
final class Installer extends AbstractInstaller
22
{
23
    /**
24
     * {@inheritdoc}
25
     */
26
    protected $name = 'install:menu';
27
28
    /**
29
     * {@inheritdoc}
30
     */
31
    protected $description = 'Menu: Build beautiful CLI interactive menus';
32
33
    /**
34
     * {@inheritdoc}
35
     */
36
    public function install(): void
37
    {
38
        $this->require('nunomaduro/laravel-console-menu "^2.1"');
39
    }
40
}
41