renamed module events

This commit is contained in:
denisdulici
2020-05-14 21:04:39 +03:00
parent e15473cc7e
commit af66baa226
9 changed files with 32 additions and 23 deletions

View 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,
],
];
}