19 lines
244 B
PHP
19 lines
244 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\models\interfaces;
|
||
|
|
||
|
interface CanUseMultiplyEducationDataInterface
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
public function getEducationsDataTagList(): ?array;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public function setEducationsDataTagList($educationsDataTagList): void;
|
||
|
}
|