Apply fixes from StyleCI (#1)

This commit is contained in:
Matthew Goslett 2017-07-27 14:16:42 +02:00 committed by GitHub
parent 6ad41471c0
commit b6f4589e48
7 changed files with 22 additions and 7 deletions

View file

@ -21,7 +21,7 @@ class PrometheusServiceProvider extends ServiceProvider
$this->loadRoutesFrom(__DIR__ . '/routes.php');
}
$exporter = $this->app->make(PrometheusExporter::class); /** @var PrometheusExporter $exporter */
$exporter = $this->app->make(PrometheusExporter::class); /* @var PrometheusExporter $exporter */
foreach (config('prometheus.collectors') as $class) {
$collector = $this->app->make($class);
$exporter->registerCollector($collector);