for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace HttpSoft\Emitter\Exception;
use RuntimeException;
class OutputAlreadySentException extends RuntimeException
{
/**
* @return self
*/
public static function create(): self
return new self('Unable to emit response; output has been emitted previously.');
}