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 HeadersAlreadySentException extends RuntimeException
{
/**
* @return self
*/
public static function create(): self
return new self('Unable to emit response; headers already sent.');
}