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