collection-crud/src/Repository/FlashRepository.php

31 lines
723 B
PHP
Raw Normal View History

2018-02-14 15:08:03 -05:00
<?php declare(strict_types=1);
namespace App\Repository;
2018-02-14 15:08:03 -05:00
2022-03-03 11:15:12 -05:00
use App\Entity\{Flash, PreviouslyOwnedFlash};
2022-09-30 10:48:14 -04:00
use Doctrine\ORM\{ORMInvalidArgumentException};
2022-03-03 10:53:48 -05:00
2022-09-30 10:48:14 -04:00
class FlashRepository extends AcquireRepository
2022-03-03 10:53:48 -05:00
{
/**
* @throws ORMInvalidArgumentException
*/
2022-09-30 10:48:14 -04:00
public function deacquire(mixed $currentRecord): void
2022-03-03 10:53:48 -05:00
{
2022-03-03 11:15:12 -05:00
$currentRecord->setFormerlyOwned(TRUE)
->setReceived(TRUE);
2022-03-03 10:53:48 -05:00
$this->moveRecord($currentRecord, new PreviouslyOwnedFlash());
}
/**
* @throws ORMInvalidArgumentException
*/
2022-09-30 10:48:14 -04:00
public function reacquire(mixed $currentRecord): void
2022-03-03 10:53:48 -05:00
{
2022-03-03 11:15:12 -05:00
$currentRecord->setFormerlyOwned(FALSE);
2022-03-03 10:53:48 -05:00
$this->moveRecord($currentRecord, new Flash());
}
2018-02-14 15:08:03 -05:00
}