for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Wunderlist\Exceptions;
class CouldNotCreateMessage extends \Exception
{
public static function invalidRecurrenceType($recurrenceType)
return new static("Recurrence Type `{$recurrenceType}` is invalid. It should be either `day`, `week`, `month` or `year`.");
}