16 lines
317 B
PHP
16 lines
317 B
PHP
<?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,
|
|
) {}
|
|
}
|