Completed
Push — master ( 19228d...34c2b4 )
by David
03:14
created

SerialNumberIntegrityValidator   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 10
ccs 0
cts 3
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 3 1
1
<?php
2
3
namespace Rawkode\Eidetic\EventStore\SerialNumberIntegrityValidator;
4
5
use Rawkode\Eidetic\EventStore\EventSubscriber;
6
7
final class SerialNumberIntegrityValidator implements EventSubscriber
8
{
9
    /**
10
     * @param int    $eventHook
11
     * @param object $event
12
     */
13
    public function handle($eventHook, $event)
14
    {
15
    }
16
}
17