-
-
Notifications
You must be signed in to change notification settings - Fork 92
Open
Labels
Description
Since self::flush accepts an int as a parameter but a bool is provided here:
Line 184 in a7ba091
| $this->flush(true); |
It seems that it's a typo of some kind. Probably
$this->flush(0);
should be there.
samdark