ExpectedVersion   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace EventStore;
3
4
/**
5
 * Class ExpectedVersion
6
 * @package EventStore
7
 */
8
class ExpectedVersion
9
{
10
    const ANY          = -2;
11
    const NO_STREAM    = -1;
12
13
    private function __construct()
14
    {
15
    }
16
}
17