26 lines
741 B
PHP
26 lines
741 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Repository\User;
|
||
|
|
|
||
|
|
interface BookmarkGroupRepositoryInterface
|
||
|
|
{
|
||
|
|
/** @return list<array<string, mixed>> */
|
||
|
|
public function listByUser(int $userId): array;
|
||
|
|
|
||
|
|
public function nextGroupSortOrder(int $userId): int;
|
||
|
|
|
||
|
|
public function countByUser(int $userId): int;
|
||
|
|
|
||
|
|
/** @return array<string, mixed>|false */
|
||
|
|
public function findById(int $id, int $userId): array|false;
|
||
|
|
|
||
|
|
public function create(array $data): int|false;
|
||
|
|
|
||
|
|
public function update(int $id, int $userId, array $data): bool;
|
||
|
|
|
||
|
|
public function delete(int $id, int $userId): bool;
|
||
|
|
|
||
|
|
/** @param list<array{id: int, sort_order: int}> $idOrderPairs */
|
||
|
|
public function updateSortOrders(int $userId, array $idOrderPairs): bool;
|
||
|
|
}
|