11 lines
203 B
PHP
11 lines
203 B
PHP
<?php
|
|
namespace Common\Concept\Factory;
|
|
|
|
use Common\Concept\Model as ModelInterface;
|
|
use Common\Concept\Repository;
|
|
|
|
interface Model
|
|
{
|
|
public function find(ModelInterface $model_name): Repository;
|
|
}
|