for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OwenIt\Auditing\Console;
use Illuminate\Console\GeneratorCommand;
class AuditDriverCommand extends GeneratorCommand
{
/**
* {@inheritdoc}
*/
protected $name = 'auditing:audit-driver';
protected $description = 'Create a new audit driver';
protected $type = 'AuditDriver';
protected function getStub()
return __DIR__ . '/../../stubs/driver.stub';
}
protected function getDefaultNamespace($rootNamespace)
return $rootNamespace . '\AuditDrivers';