for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Djoudi\LaravelH5p\Commands;
use Illuminate\Console\Command;
class ResetCommand extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'laravel-h5p:reset';
* The console command description.
protected $description = 'Creates a migration following the Laravel-H5p specifications.';
* Execute the console command.
* @return void
public function fire()
$this->line('');
$this->info('Laravel-H5p Creating reset...');
}