1
0
mirror of https://github.com/php/doc-en.git synced 2026-03-23 23:32:18 +01:00

fix typo in Yaf_Response_Abstract::appendBody (#4046)

This commit is contained in:
Luffy
2024-11-12 22:30:01 +08:00
committed by GitHub
parent 9e6beda833
commit 0d4f735ed7

View File

@@ -63,7 +63,7 @@
<?php
$response = new Yaf_Response_Http();
$response->setBody("Hello")->prependBody(" World");
$response->setBody("Hello")->appendBody(" World");
echo $response;
?>