renamed module events
This commit is contained in:
20
modules/PaypalStandard/Providers/Event.php
Normal file
20
modules/PaypalStandard/Providers/Event.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\PaypalStandard\Providers;
|
||||
|
||||
use Illuminate\Foundation\Support\Providers\EventServiceProvider as Provider;
|
||||
use Modules\PaypalStandard\Listeners\ShowAsPaymentMethod;
|
||||
|
||||
class Event extends Provider
|
||||
{
|
||||
/**
|
||||
* The event listener mappings for the module.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $listen = [
|
||||
\App\Events\Module\PaymentMethodShowing::class => [
|
||||
ShowAsPaymentMethod::class,
|
||||
],
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user