Completed
Push — master ( 1358d6...984c1e )
by Karsten
01:40
created

IdentityMapper::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * File was created 27.08.2015 08:44
4
 *
5
 * @author Karsten J. Gerber <[email protected]>
6
 */
7
8
namespace PeekAndPoke\Component\Psi\Functions\Unary\Mapper;
9
10
use PeekAndPoke\Component\Psi\Psi\Map\Identity;
11
12
/**
13
 * @deprecated will be removed in v1.0.0 use equivalent in Psi\... instead
14
 *
15
 * @author     Karsten J. Gerber <[email protected]>
16
 */
17
class IdentityMapper extends Identity
18
{
19
}
20