| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 14 | public function __construct(DBInterface $db, $table) |
|
| 18 | { |
||
| 19 | 14 | parent::__construct($db, $table); |
|
| 20 | 14 | if (!isset(static::$mappers[spl_object_hash($db)])) { |
|
| 21 | 2 | static::$mappers[spl_object_hash($db)] = new Mapper($db); |
|
| 22 | } |
||
| 23 | 14 | $this->mapper = static::$mappers[spl_object_hash($db)]; |
|
| 24 | 14 | } |
|
| 25 | 12 | public function iterator(array $fields = null) : \Iterator |
|
| 33 | } |