for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Maiorano\Shortcodes\Exceptions;
/**
* Class DeregisterException.
*/
final class DeregisterException extends ShortcodeException
{
* @return static
public static function blank(): self
return new static(parent::BLANK);
}
* @param string $name
*
public static function missing(string $name): self
$e = sprintf(parent::MISSING, $name);
return new static($e);