Files
kupshop/bundles/KupShop/PreordersBundle/Util/PersistentCollection.php
2025-08-02 16:30:27 +02:00

19 lines
309 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\PreordersBundle\Util;
use Doctrine\Common\Collections\Collection;
/**
* @template TKey of array-key
* @template TVal
*
* @extends Collection<TKey, TVal>
*/
interface PersistentCollection extends Collection
{
public function save(): ?\Throwable;
}