Backup #799
| ID | 799 |
| Dateipfad | /var/www/dev.campus.systemische-tools.de/src/Domain/Repository/ContentRepositoryInterface.php |
| Version | 1 |
| Typ |
modified |
| Größe | 2.1 KB |
| Hash | 67ae4b73550c1d642c85bbb4319879fe3c15c3d253dda1f05acce14f207aeca3 |
| Datum | 2025-12-23 08:07:19 |
| Geändert von | claude-code-hook |
| Grund | Claude Code Pre-Hook Backup vor Edit-Operation |
| Datei existiert |
Ja
|
Dateiinhalt
<?php
namespace Domain\Repository;
/**
* Interface for Content/Order Repository operations.
*/
interface ContentRepositoryInterface
{
/**
* @param array<string, mixed> $filters
* @return array<int, array<string, mixed>>
*/
public function findAllOrders(array $filters = [], int $limit = 50, int $offset = 0): array;
/**
* @return array<string, mixed>|null
*/
public function findOrder(int $id): ?array;
/**
* @return array{model: string, collections: array<string>, context_limit: int, author_profile_id: int|null, contract_id: int|null, structure_id: int|null}
*/
public function getLastOrderSettings(): array;
/**
* @param array<string, mixed> $data
*/
public function createOrder(array $data): int;
public function updateOrderStatus(int $id, string $status): void;
/**
* @param array<string, mixed> $data
*/
public function updateOrder(int $id, array $data): bool;
/**
* @return array<int, array<string, mixed>>
*/
public function findVersionsByOrder(int $orderId): array;
/**
* @return array<string, mixed>|null
*/
public function findLatestVersion(int $orderId): ?array;
/**
* @return array<string, mixed>|null
*/
public function findVersion(int $id): ?array;
/**
* @return array<int, array<string, mixed>>
*/
public function findCritiquesByVersion(int $versionId): array;
/**
* @return array<int, array<string, mixed>>
*/
public function findSourcesByOrder(int $orderId): array;
/**
* @return array<int, array<string, mixed>>
*/
public function findAllProfiles(): array;
/**
* @return array<int, array<string, mixed>>
*/
public function findAllContracts(): array;
/**
* @return array<int, array<string, mixed>>
*/
public function findAllStructures(): array;
/**
* @return array<int, array<string, mixed>>
*/
public function findAllCritics(): array;
/**
* @return array<string, mixed>
*/
public function getStatistics(): array;
}
Vollständig herunterladen
Aktionen
Andere Versionen dieser Datei
| ID |
Version |
Typ |
Größe |
Datum |
| 2158 |
4 |
modified |
2.4 KB |
2025-12-30 22:23 |
| 2157 |
3 |
modified |
2.3 KB |
2025-12-30 22:23 |
| 1280 |
2 |
modified |
2.1 KB |
2025-12-25 12:54 |
| 799 |
1 |
modified |
2.1 KB |
2025-12-23 08:07 |
← Zurück zur Übersicht