for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace EventSauce\EventSourcing;
use RuntimeException;
final class UnableToResolveTimeOfRecording extends RuntimeException implements EventSauceException
{
public static function fromFormatAndHeader(string $format, mixed $header): self
return new self("Unable to determine time of recording from format \"{$format}\" and header \"{$header}\"");
}