EventListener1   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
c 1
b 0
f 0
dl 0
loc 14
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A handle() 0 3 1
A __construct() 0 4 1
1
<?php
2
3
class EventListener1 extends \Suricate\Event\EventListener
4
{
5
    protected $payload;
6
    protected string $eventType;
7
8
    public function __construct($payload, string $eventType)
9
    {
10
        $this->payload = $payload;
11
        $this->eventType = $eventType;
12
    }
13
14
    public function handle()
15
    {
16
        echo "payload for listerner1 is : " . $this->payload . "\n";
17
    }
18
}
19