Passed
Push — master ( c13b73...f2713c )
by Arthur
05:06
created

AccountCreatedListener::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: arthur
5
 * Date: 14.10.18
6
 * Time: 19:44.
7
 */
8
9
namespace Modules\Account\Listeners;
10
11
use Foundation\Abstracts\Listeners\Listener;
12
use Modules\Account\Events\AccountCreatedEvent;
13
14
class AccountCreatedListener extends Listener
15
{
16
    /**
17
     * @param AccountCreatedEvent $event
18
     */
19
    public function handle($event): void
20
    {
21
22
    }
23
24
    /**
25
     * @param AccountCreatedEvent $event
26
     * @param $exception
27
     */
28
    public function failed($event, $exception): void
29
    {
30
    }
31
}
32