squash mysterious notice coming out of fetchAll()

This commit is contained in:
Joby Elliott 2018-09-19 15:14:32 -06:00
parent 22602cffd2
commit feed01b327

View file

@ -83,7 +83,7 @@ abstract class AbstractDriver implements DSODriverInterface
if (!$s->execute($params)) { if (!$s->execute($params)) {
return []; return [];
} }
return $s->fetchAll(\PDO::FETCH_ASSOC); return @$s->fetchAll(\PDO::FETCH_ASSOC);
} }
public function insert(string $table, DSOInterface $dso) : bool public function insert(string $table, DSOInterface $dso) : bool