Merge pull request #3 from saschanos/type-fix

fix wrong type return
pull/498/head
n0nag0n 1 year ago committed by GitHub
commit 5880579045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -433,7 +433,8 @@ class Engine
$response->status($code);
}
$response->write(ob_get_clean());
$content = ob_get_clean();
$response->write($content ?: '');
$response->send();
}

Loading…
Cancel
Save