31 lines
607 B
PHP
31 lines
607 B
PHP
<?php
|
|
|
|
namespace Modules\OfflinePayments\Providers;
|
|
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as Provider;
|
|
|
|
class Event extends Provider
|
|
{
|
|
/**
|
|
* Determine if events and listeners should be automatically discovered.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function shouldDiscoverEvents()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the listener directories that should be used to discover events.
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function discoverEventsWithin()
|
|
{
|
|
return [
|
|
__DIR__ . '/../Listeners',
|
|
];
|
|
}
|
|
}
|