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