mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-04-08 11:11:52 +00:00
* update ECS config to v4 * composer: require Symplify 4 * apply coding-standard: use constants over functions, protected setUp() in tests, array indentation * ecs: add false positive case * composer: update lock * bump to ECS 4.4 * update composer.lock * shorten ECS config name * ecs: ignore assignments in while() * fix cs
13 lines
164 B
PHP
13 lines
164 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Phpml\Dataset;
|
|
|
|
interface Dataset
|
|
{
|
|
public function getSamples(): array;
|
|
|
|
public function getTargets(): array;
|
|
}
|