ResetCommand::fire()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 1
eloc 2
c 1
b 1
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
namespace Djoudi\LaravelH5p\Commands;
4
5
use Illuminate\Console\Command;
6
7
class ResetCommand extends Command
8
{
9
    /**
10
     * The console command name.
11
     *
12
     * @var string
13
     */
14
    protected $name = 'laravel-h5p:reset';
15
16
    /**
17
     * The console command description.
18
     *
19
     * @var string
20
     */
21
    protected $description = 'Creates a migration following the Laravel-H5p specifications.';
22
23
    /**
24
     * Execute the console command.
25
     *
26
     * @return void
27
     */
28
    public function fire()
29
    {
30
        $this->line('');
31
        $this->info('Laravel-H5p Creating reset...');
32
    }
33
}
34