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