mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 17:31:09 -06:00
26 lines
386 B
PHP
26 lines
386 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Support\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* Class Steam
|
|
*
|
|
* @codeCoverageIgnore
|
|
* @package FireflyIII\Support\Facades
|
|
*/
|
|
class Steam extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'steam';
|
|
}
|
|
|
|
}
|