Projeto

Geral

Perfil

Estatísticas
| Branch: | Revisão:

expressolivretools / app / Listeners / ExampleListener.php @ 3e379cec

Histórico | Ver | Anotar | Baixar (496 Bytes)

1
<?php
2

    
3
namespace App\Listeners;
4

    
5
use App\Events\ExampleEvent;
6
use Illuminate\Contracts\Queue\ShouldQueue;
7
use Illuminate\Queue\InteractsWithQueue;
8

    
9
class ExampleListener
10
{
11
    /**
12
     * Create the event listener.
13
     *
14
     * @return void
15
     */
16
    public function __construct()
17
    {
18
        //
19
    }
20

    
21
    /**
22
     * Handle the event.
23
     *
24
     * @param  \App\Events\ExampleEvent  $event
25
     * @return void
26
     */
27
    public function handle(ExampleEvent $event)
28
    {
29
        //
30
    }
31
}