blessing-skin-server/app/Blessing/Facades/App.php
2016-08-24 22:43:04 +08:00

22 lines
333 B
PHP

<?php
namespace Blessing\Facades;
use \Illuminate\Support\Facades\Facade;
/**
* @see \Blessing\Foundation\Application
*/
class App extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'app';
}
}