Passed
Push — master ( 680194...b4f0aa )
by Alexander
03:27
created

NonStatic   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
3
namespace Yiisoft\EventDispatcher\Tests\Listener;
4
5
use Yiisoft\EventDispatcher\Tests\Event\Event;
6
7
class NonStatic
8
{
9
    public function handle(Event $event): void
10
    {
11
        // do nothing
12
    }
13
}
14