firefly-iii/app/Support/Facades/Steam.php

26 lines
386 B
PHP
Raw Normal View History

<?php
namespace FireflyIII\Support\Facades;
use Illuminate\Support\Facades\Facade;
2015-02-11 00:35:10 -06:00
/**
* Class Steam
*
2015-05-10 01:26:42 -05:00
* @codeCoverageIgnore
* @package FireflyIII\Support\Facades
*/
class Steam extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'steam';
}
2015-03-29 01:14:32 -05:00
}