PHP Class Illuminate\Foundation\Support\Providers\EventServiceProvider

Inheritance: extends Illuminate\Support\ServiceProvider
Exibir arquivo Open project: ctrlaltdylan/MirrorMirror Class Usage Examples

Protected Properties

Property Type Description
$listen array The event handler mappings for the application.
$subscribe array The subscriber classes to register.

Public Methods

Method Description
boot ( ) : void Register the application's event listeners.
listens ( ) : array Get the events and handlers.
register ( )

Method Details

boot() public method

Register the application's event listeners.
public boot ( ) : void
return void

listens() public method

Get the events and handlers.
public listens ( ) : array
return array

register() public method

public register ( )

Property Details

$listen protected_oe property

The event handler mappings for the application.
protected array $listen
return array

$subscribe protected_oe property

The subscriber classes to register.
protected array $subscribe
return array