for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\RobotsMiddleware;
use Exception;
class InvalidIndexRule extends Exception
{
public static function requiresBooleanOrString()
return new static('An indexing rule needs to return a boolean or a string.');
}