laravel-prometheus-exporter/src/PrometheusFacade.php
2017-07-27 11:11:02 +02:00

18 lines
324 B
PHP

<?php
namespace Superbalist\LaravelPrometheusExporter;
use Illuminate\Support\Facades\Facade;
class PrometheusFacade extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'prometheus';
}
}