PermeableFilter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A filter() 0 4 1
1
<?php
2
/**
3
 * @author stev leibelt <[email protected]>
4
 * @since 2015-05-14 
5
 */
6
7
namespace Net\Bazzline\Component\Csv\Filter;
8
9
use Net\Bazzline\Component\GenericAgreement\Exception\ExceptionInterface;
10
11
class PermeableFilter extends AbstractFilter
12
{
13
    /**
14
     * @param mixed $data
15
     * @return null|mixed
16
     * @throws ExceptionInterface
17
     */
18
    public function filter($data)
19
    {
20
        return $data;
21
    }
22
}