mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-15 17:57:11 +00:00
11 lines
139 B
PHP
11 lines
139 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Phpml\Tokenization;
|
|
|
|
interface Tokenizer
|
|
{
|
|
public function tokenize(string $text): array;
|
|
}
|