Skip to content

Commit 067dcf4

Browse files
committed
Ignore phpstan errors
1 parent 95ba977 commit 067dcf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Result.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public function fetchRow(int $offset, string $class = null, mixed ...$constructo
181181
public function fetchArray() : array | null
182182
{
183183
$this->checkIsFree();
184-
return $this->result->fetch_assoc();
184+
return $this->result->fetch_assoc(); // @phpstan-ignore-line
185185
}
186186

187187
/**
@@ -206,7 +206,7 @@ public function fetchArrayRow(int $offset) : array
206206
{
207207
$this->checkIsFree();
208208
$this->moveCursor($offset);
209-
return $this->result->fetch_assoc();
209+
return $this->result->fetch_assoc(); // @phpstan-ignore-line
210210
}
211211

212212
/**

0 commit comments

Comments
 (0)