Viewing file: SlugGeneratorInterface.php (837 B) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* * This file is part of the league/commonmark package. * * (c) Colin O'Dell <colinodell@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */
namespace League\CommonMark\Extension\HeadingPermalink\Slug;
use League\CommonMark\Normalizer\TextNormalizerInterface;
@trigger_error(sprintf('%s is deprecated; use %s instead', SlugGeneratorInterface::class, TextNormalizerInterface::class), E_USER_DEPRECATED);
/** * @deprecated Use League\CommonMark\Normalizer\TextNormalizerInterface instead */ interface SlugGeneratorInterface { /** * Create a URL-friendly slug based on the given input string * * @param string $input * * @return string */ public function createSlug(string $input): string; }
|