1<?php
2
3declare(strict_types=1);
4
5namespace Phpml\Association;
6
7use Phpml\Estimator;
8
9interface Associator extends Estimator
10{
11}
12