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

Commit 0f20c99

Browse files
andrew-dembadrilo
authored andcommitted
Fix constant usage in example
1 parent 9ab0b10 commit 0f20c99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/_pages/guides/4-symfony-stream-content-large-spreadsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class MyStreamController extends Controller
9494
9595
$i++;
9696
// Flushing the buffer every N rows to stream echo'ed content.
97-
if ($i % FLUSH_THRESHOLD === 0) {
97+
if ($i % self::FLUSH_THRESHOLD === 0) {
9898
flush();
9999
}
100100
}

0 commit comments

Comments
 (0)