mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
18 lines
395 B
PHP
18 lines
395 B
PHP
<?php
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace phpOMS\Localization\LanguageDetection\Tokenizer;
|
|
|
|
/**
|
|
* Interface TokenizerInterface
|
|
*
|
|
* @copyright Patrick Schur
|
|
* @license https://opensource.org/licenses/mit-license.html MIT
|
|
* @author Patrick Schur <patrick_schur@outlook.de>
|
|
* @package LanguageDetection
|
|
*/
|
|
interface TokenizerInterface
|
|
{
|
|
public function tokenize(string $str): array;
|
|
} |