for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Auth\Providers;
use Arcanedev\Support\Providers\CommandServiceProvider as ServiceProvider;
use Arcanesoft\Auth\Console;
/**
* Class CommandServiceProvider
*
* @package Arcanesoft\Auth\Providers
* @author ARCANEDEV <[email protected]>
*/
class CommandServiceProvider extends ServiceProvider
{
/* ------------------------------------------------------------------------------------------------
| Properties
| ------------------------------------------------------------------------------------------------
* Console commands.
* @var array
protected $commands = [
Console\PublishCommand::class,
Console\SetupCommand::class,
];
}