AutorÃa | Ultima modificación | Ver Log |
<?php declare(strict_types=1); namespace Phpml\Preprocessing\Imputer; interface Strategy { /** * @return mixed */ public function replaceValue(array $currentAxis); }
<?php
declare(strict_types=1);
namespace Phpml\Preprocessing\Imputer;
interface Strategy
{
/**
* @return mixed
*/
public function replaceValue(array $currentAxis);
}