summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-foundation/StreamedResponse.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/http-foundation/StreamedResponse.php')
-rw-r--r--vendor/symfony/http-foundation/StreamedResponse.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/symfony/http-foundation/StreamedResponse.php b/vendor/symfony/http-foundation/StreamedResponse.php
index 1fb2b46af8..b87d0e35df 100644
--- a/vendor/symfony/http-foundation/StreamedResponse.php
+++ b/vendor/symfony/http-foundation/StreamedResponse.php
@@ -111,7 +111,7 @@ class StreamedResponse extends Response
throw new \LogicException('The Response callback must not be null.');
}
- call_user_func($this->callback);
+ \call_user_func($this->callback);
return $this;
}