| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public function find(array $params = array()) |
||
| 43 | { |
||
| 44 | |||
| 45 | // execute the prepared statement |
||
| 46 | $this->preparedStatement->execute($params); |
||
| 47 | |||
| 48 | // fetch the values and return them |
||
| 49 | while ($record = $this->preparedStatement->fetch(\PDO::FETCH_ASSOC)) { |
||
| 50 | // return the record |
||
| 51 | yield $record; |
||
| 52 | } |
||
| 53 | } |
||
| 54 | } |
||
| 55 |