mirror of
https://github.com/superhelio/commands.git
synced 2026-01-30 04:46:23 +00:00
14 lines
224 B
PHP
14 lines
224 B
PHP
<?php
|
|
namespace Superhelio\Commands;
|
|
|
|
class Facade extends \Illuminate\Support\Facades\Facade
|
|
{
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'commands';
|
|
}
|
|
}
|