Completed
Push — master ( 4ea848...577058 )
by Hannes
02:16
created

NullExpectation   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 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 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A validate() 0 3 1
1
<?php
2
3
namespace hanneskod\readmetester\Expectation;
4
5
use hanneskod\readmetester\Result;
6
7
/**
8
 * Expect nothing
9
 */
10
class NullExpectation implements ExpectationInterface
11
{
12
    /**
13
     * Expect nothing
14
     *
15
     * @param  Result $result
16
     * @return null
17
     */
18
    public function validate(Result $result)
19
    {
20
    }
21
}
22