firefly-iii/app/Support/Facades/Steam.php
2015-02-11 07:35:10 +01:00

24 lines
362 B
PHP

<?php
namespace FireflyIII\Support\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Class Steam
*
* @package FireflyIII\Support\Facades
*/
class Steam extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'steam';
}
}