Skip to content
This repository has been archived by the owner on May 26, 2022. It is now read-only.

Commit

Permalink
Fix constant usage in example
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-demb authored and adrilo committed Feb 10, 2021
1 parent 9ab0b10 commit 0f20c99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class MyStreamController extends Controller
$i++;
// Flushing the buffer every N rows to stream echo'ed content.
if ($i % FLUSH_THRESHOLD === 0) {
if ($i % self::FLUSH_THRESHOLD === 0) {
flush();
}
}
Expand Down

0 comments on commit 0f20c99

Please sign in to comment.