suppress new PHP-7.4 notice about failed stream_write
[m6w6/ext-http] / tests / messagebody003.phpt
index 8444cbf770e2c9f3b7673b53009932788f728447..52968ac54869715be3a7c72d064923f1e9a40024 100644 (file)
@@ -10,7 +10,7 @@ echo "Test\n";
 
 $file = new http\Message\Body(fopen(__FILE__, "r"));
 try {
-       $file->append("nope");
+       @$file->append("nope");
 } catch (Exception $e) {
        echo $e, "\n";
 }