9 lines
163 B
PHP
9 lines
163 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Hura8\Interfaces;
|
||
|
|
|
||
|
|
interface iEntityCategoryModel extends iEntityModel
|
||
|
|
{
|
||
|
|
public function getAllByParent(array $condition = array()): array;
|
||
|
|
}
|