PHP Class Profiler\ProfilerServiceProvider

Inheritance: extends Illuminate\Support\ServiceProvider
Show file Open project: loic-sharma/profiler

Public Methods

Method Description
boot ( ) : void Boot the service provider.
register ( ) : void Register the service provider.
registerProfiler ( ) : void Register the profiler.
registerProfilerLoggerEvent ( ) : void Register an event to automatically fetch Laravel's logs.
registerProfilerQueryEvent ( ) : void Register an event to automatically log database queries.
registerProfilerRouting ( ) : void Register routes to enable or disable the profiler.
registerProfilerToOutput ( ) : void Register an after filter to automatically display the profiler.

Method Details

boot() public method

Boot the service provider.
public boot ( ) : void
return void

register() public method

Register the service provider.
public register ( ) : void
return void

registerProfiler() public method

Register the profiler.
public registerProfiler ( ) : void
return void

registerProfilerLoggerEvent() public method

Register an event to automatically fetch Laravel's logs.
public registerProfilerLoggerEvent ( ) : void
return void

registerProfilerQueryEvent() public method

Register an event to automatically log database queries.
public registerProfilerQueryEvent ( ) : void
return void

registerProfilerRouting() public method

Register routes to enable or disable the profiler.
public registerProfilerRouting ( ) : void
return void

registerProfilerToOutput() public method

Register an after filter to automatically display the profiler.
public registerProfilerToOutput ( ) : void
return void