for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Webfactor\Laravel\OpeningHours\Exceptions;
class InvalidDate extends Exception
{
public static function invalidDate(string $date): self
__construct()
return new self("Date `{$date}` isn't a valid date. Dates should be formatted as Y-m-d, e.g. `2016-12-25`.");
}