MakeAuthHandlers::getStub()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Slides\Connector\Auth\Commands;
4
5
/**
6
 * Class MakeAuthHandlers
7
 *
8
 * @package Slides\Connector\Auth\Commands
9
 */
10
class MakeAuthHandlers extends \Illuminate\Console\GeneratorCommand
11
{
12
    /**
13
     * The name and signature of the console command.
14
     *
15
     * @var string
16
     */
17
    protected $signature = 'make:auth-handlers';
18
19
    /**
20
     * The console command description.
21
     *
22
     * @var string
23
     */
24
    protected $description = 'Create a skeleton of the authentication handlers';
25
26
    /**
27
     * @inheritdoc
28
     */
29
    protected function getStub()
30
    {
31
        return __DIR__ . '/stubs/auth-handlers.stub';
32
    }
33
34
    /**
35
     * Get the desired class name from the input.
36
     *
37
     * @return string
38
     */
39
    protected function getNameInput()
40
    {
41
        return 'Services/Auth/AuthHandlers';
42
    }
43
44
    /**
45
     * Get the console command arguments.
46
     *
47
     * @return array
48
     */
49
    protected function getArguments()
50
    {
51
        return [];
52
    }
53
}