This repository has been archived on 2021-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pingan_unionpay/app/Providers/EventServiceProvider.php

34 lines
622 B
PHP

<?php
namespace App\Providers;
use App\Events\ConponCallback;
use App\Listeners\ConponCallbackListener;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
* @var array
*/
protected $listen = [
ConponCallback::class => [
ConponCallbackListener::class,
],
];
/**
* Register any events for your application.
* @return void
*/
public function boot()
{
parent::boot();
//
}
}