for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Media\Providers;
use Arcanedev\Support\ServiceProvider;
use Arcanesoft\Media\Console;
/**
* Class CommandServiceProvider
*
* @package Arcanesoft\Media\Providers
* @author ARCANEDEV <[email protected]>
*/
class CommandServiceProvider extends ServiceProvider
{
/* ------------------------------------------------------------------------------------------------
| Properties
| ------------------------------------------------------------------------------------------------
* Console commands.
* @var array
protected $commands = [
Console\PublishCommand::class,
];
| Main Functions
* Register the service provider.
public function register()
$this->commands($this->commands);
}
* Get the provided commands.
* @return array
public function provides()
return $this->commands;