mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-02-13 17:38:36 +00:00
12 lines
139 B
PHP
12 lines
139 B
PHP
<?php
|
|
|
|
declare (strict_types = 1);
|
|
|
|
namespace Phpml\Preprocessing;
|
|
|
|
use Phpml\Transformer;
|
|
|
|
interface Preprocessor extends Transformer
|
|
{
|
|
}
|