Initial commit, superhelio:reload

This commit is contained in:
Ismo Vuorinen
2017-02-07 17:17:35 +02:00
commit c0044479e6
7 changed files with 244 additions and 0 deletions

13
src/Facade.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
namespace Superhelio\Commands;
class Facade extends \Illuminate\Support\Facades\Facade
{
/**
* {@inheritDoc}
*/
protected static function getFacadeAccessor()
{
return 'commands';
}
}