10 lines
220 B
PHP
10 lines
220 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Hura8\Interfaces;
|
||
|
|
|
||
|
|
interface iEntityCategoryController extends iEntityController
|
||
|
|
{
|
||
|
|
public function getAllParent(array $condition = []);
|
||
|
|
public function getNestedCategories($is_public = false);
|
||
|
|
}
|