1<?php
2
3declare(strict_types = 1);
4
5namespace LanguageDetection\Tokenizer;
6
7/**
8 * Interface TokenizerInterface
9 *
10 * @copyright Patrick Schur
11 * @license https://opensource.org/licenses/mit-license.html MIT
12 * @author Patrick Schur <patrick_schur@outlook.de>
13 * @package LanguageDetection
14 */
15interface TokenizerInterface
16{
17    public function tokenize(string $str): array;
18}