SluggerInterface.php
9 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\String\Slugger; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Symfony\Component\String\AbstractUnicodeString; |
| 5 | interface SluggerInterface |
| 6 | { |
| 7 | public function slug(string $string, string $separator = '-', ?string $locale = null) : AbstractUnicodeString; |
| 8 | } |
| 9 |