����JFIF���������
1#@!#!123s
D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
nc6d095
/
invoice.nisan.space
/
vendor
/
barryvdh
/
laravel-debugbar
/
src
/
Filename :
LumenServiceProvider.php
back
Copy
<?php namespace Barryvdh\Debugbar; use Laravel\Lumen\Application; class LumenServiceProvider extends ServiceProvider { /** @var Application */ protected $app; /** * Get the active router. * * @return Application */ protected function getRouter() { return $this->app->router; } /** * Get the config path * * @return string */ protected function getConfigPath() { return base_path('config/debugbar.php'); } /** * Register the Debugbar Middleware * * @param string $middleware */ protected function registerMiddleware($middleware) { $this->app->middleware([$middleware]); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['debugbar', 'command.debugbar.clear']; } }