Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
7 | 20 | public function __construct (\PDO $pdo, $table, SalesmanInterface $salesman = null) |
|
8 | { |
||
9 | 20 | parent::__construct( $pdo, $table, $salesman); |
|
10 | |||
11 | 20 | $filtered = new ActiveSalesmanFilterIterator( $this->getIterator(), true); |
|
12 | |||
13 | 20 | $this->salesmen = iterator_to_array( $filtered ); |
|
14 | 20 | } |
|
15 | |||
17 |