php-ml/src/Phpml/Tokenization/Tokenizer.php

16 lines
210 B
PHP
Raw Normal View History

2016-05-02 22:33:18 +00:00
<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
2016-05-02 22:33:18 +00:00
namespace Phpml\Tokenization;
interface Tokenizer
{
/**
* @param string $text
2016-11-20 21:53:17 +00:00
*
2016-05-02 22:33:18 +00:00
* @return array
*/
public function tokenize(string $text): array;
}