php-ml/src/Phpml/Preprocessing/Preprocessor.php
2016-06-16 16:10:46 +02:00

12 lines
139 B
PHP

<?php
declare (strict_types = 1);
namespace Phpml\Preprocessing;
use Phpml\Transformer;
interface Preprocessor extends Transformer
{
}