for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Media\Console;
use Arcanesoft\Media\MediaServiceProvider;
/**
* Class PublishCommand
*
* @package Arcanesoft\Media\Console
* @author ARCANEDEV <[email protected]>
*/
class PublishCommand extends Command
{
/* ------------------------------------------------------------------------------------------------
| Properties
| ------------------------------------------------------------------------------------------------
* The name and signature of the console command.
* @var string
protected $signature = 'media:publish';
* The console command description.
protected $description = 'Publish media config, assets and other stuff.';
| Main Functions
* Execute the console command.
public function handle()
$this->call('vendor:publish', [
'--provider' => MediaServiceProvider::class,
]);
}