<?php declare(strict_types=1);

namespace App\Engine\Admin;

/**
 * @template TEntity
 */
interface AdminRepositoryInterface
{

    /**
     * @return array<TEntity>
     */
    public function loadAll(): array;

}