Completed
Pull Request — stable (#353)
by Matt
04:33
created

Installer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A install() 0 7 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\ConsoleDusk;
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:console-dusk';
27
28
    /**
29
     * {@inheritdoc}
30
     */
31
    protected $description = 'Console Dusk: Browser automation';
32
33
    /**
34
     * {@inheritdoc}
35
     */
36
    public function install(): void
37
    {
38
        $this->require('nunomaduro/laravel-console-dusk');
39
40
        $this->info('Usage:');
41
        $this->comment(
42
            '
43
class VisitLaravelZeroCommand extends Command
44
{
45
    public function handle()
46
    {
47
        $this->browse(function ($browser) {
48
            $browser->visit("http://laravel-zero.com")
49
                ->assertSee("100% Open Source");
50
        });
51
    }
52
}
53
'
54
        );
55
    }
56
}
57