Code Duplication    Length = 7-7 lines in 2 locations

src/Commands/JobMakeCommand.php 1 location

@@ 43-49 (lines=7) @@
40
     *
41
     * @return array
42
     */
43
    protected function getArguments()
44
    {
45
        return [
46
            ['name', InputArgument::REQUIRED, 'The name of the job.'],
47
            ['module', InputArgument::OPTIONAL, 'The name of module will be used.'],
48
        ];
49
    }
50
51
    /**
52
     * Get the console command options.

src/Commands/ProviderMakeCommand.php 1 location

@@ 51-57 (lines=7) @@
48
     *
49
     * @return array
50
     */
51
    protected function getArguments()
52
    {
53
        return [
54
            ['name', InputArgument::REQUIRED, 'The service provider name.'],
55
            ['module', InputArgument::OPTIONAL, 'The name of module will be used.'],
56
        ];
57
    }
58
59
    /**
60
     * Get the console command options.