12 lines
296 B
PHP
12 lines
296 B
PHP
<?php
|
|
if (!defined("_PS_VERSION_")) {
|
|
exit();
|
|
}
|
|
|
|
interface ICategory
|
|
{
|
|
public function createCategory(string $name, ?int $parentId = null): int;
|
|
public function getCategoryIdByName(string $name): ?int;
|
|
public function processCategoriesFromString(string $categoriesJson): array;
|
|
}
|