16 lines
458 B
PHP
16 lines
458 B
PHP
<?php
|
|
|
|
namespace Modules\Content\Interfaces;
|
|
|
|
interface ContentCategoryInterface
|
|
{
|
|
public function findAll();
|
|
public function getContentCategoryById($ContentCategoryId);
|
|
public function getContentCategoryList();
|
|
public function create(array $ContentCategoryDetails);
|
|
public function update($ContentCategoryId, array $newDetails);
|
|
public function delete($ContentCategoryId);
|
|
public function pluck();
|
|
public function count();
|
|
}
|