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

26 lines
398 B
PHP
Raw Normal View History

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