Pokud nebyl nalezen žádný řádek, PDO::fetch vrátí false. Toto je fakt. Takže změňte svou funkci:
function(){
$success = $this->query($query, $bindvalues);
if(!$success) {
//handle error
return false;
}
$rows = $this->stmt->fetch(PDO::FETCH_ASSOC);
return $rows ?: null;
}