* * For the full copyright and license information, please view the "LICENSE.md" * file that was distributed with this source code. */ declare(strict_types=1); namespace Respect\Validation\Rules; /** * @author Carlos André Ferrari * @author Henrique Moody * @author Nick Lombard */ class Slug extends AbstractRule { /** * {@inheritdoc} */ public function validate($input): bool { if (mb_strstr($input, '--')) { return false; } if (!preg_match('@^[0-9a-z\-]+$@', $input)) { return false; } if (preg_match('@^-|-$@', $input)) { return false; } return true; } }