16 lines
372 B
PHP
16 lines
372 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Repository\CustomField;
|
||
|
|
|
||
|
|
interface UserCustomFieldValueOptionRepositoryInterface
|
||
|
|
{
|
||
|
|
/** @param int[] $optionIds */
|
||
|
|
public function replaceForValueId(int $valueId, array $optionIds): bool;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param int[] $valueIds
|
||
|
|
* @return array<int, int[]>
|
||
|
|
*/
|
||
|
|
public function listOptionIdsByValueIds(array $valueIds): array;
|
||
|
|
}
|