Completed
Push — master ( 256c3c...d8e20a )
by Karsten
01:47
created

NotStartingWith   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 4 1
1
<?php
2
/**
3
 * Created by gerk on 29.11.17 07:01
4
 */
5
6
namespace PeekAndPoke\Component\Psi\Psi\Str;
7
8
/**
9
 *
10
 *
11
 * @author Karsten J. Gerber <[email protected]>
12
 */
13
class NotStartingWith extends StartingWith
14
{
15 30
    public function __invoke($input)
16
    {
17 30
        return false === parent::__invoke($input);
18
    }
19
}
20