wip: adds cache rich functionality

This commit is contained in:
2025-06-28 15:15:49 -05:00
parent a2b20b14ea
commit 242dd6fe99
11 changed files with 223 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Torrentio\Action\Result;
use Aimeos\Map;
use OneToMany\RichBundle\Contract\ResultInterface;
class DeleteCacheResult implements ResultInterface
{
public function __construct(
public Map $result,
public ?string $cacheKey = null,
public ?array $tags = null,
) {}
}