Completed
Push — master ( f2281f...b708b1 )
by Randy
02:32
created

Expect   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A that() 0 4 1
1
<?php
2
3
namespace Dgame\Expectation;
4
5
/**
6
 * Class Expect
7
 * @package Dgame\Expectation
8
 */
9
final class Expect
10
{
11
    /**
12
     * @param $value
13
     *
14
     * @return CommonExpectations
15
     */
16 1
    public static function that($value): CommonExpectations
17
    {
18 1
        return new CommonExpectations($value);
19
    }
20
}