initial commit

This commit is contained in:
Matthew Goslett 2017-07-27 11:11:02 +02:00
commit bf1a4e1879
17 changed files with 822 additions and 0 deletions

18
src/PrometheusFacade.php Normal file
View file

@ -0,0 +1,18 @@
<?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';
}
}