php-ml/src/Phpml/Preprocessing/Preprocessor.php

12 lines
139 B
PHP
Raw Normal View History

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