collection-crud/src/Repository/LensesRepository.php

23 lines
511 B
PHP
Raw Permalink Normal View History

2018-07-18 11:35:27 -04:00
<?php declare(strict_types=1);
2018-01-04 10:42:36 -05:00
namespace App\Repository;
2018-01-04 10:42:36 -05:00
2022-03-03 11:15:12 -05:00
use App\Entity\{Lenses, PreviouslyOwnedLenses};
2018-01-04 10:42:36 -05:00
2023-07-21 10:35:15 -04:00
class LensesRepository extends AcquireRepository {
public function deacquire(mixed $currentRecord): void
{
$currentRecord->setFormerlyOwned(TRUE)
->setReceived(TRUE);
2018-01-04 10:42:36 -05:00
2023-07-21 10:35:15 -04:00
$this->moveRecord($currentRecord, new PreviouslyOwnedLenses());
}
2018-01-04 10:42:36 -05:00
2023-07-21 10:35:15 -04:00
public function reacquire(mixed $currentRecord): void
{
$currentRecord->setFormerlyOwned(FALSE);
2018-01-04 10:42:36 -05:00
2023-07-21 10:35:15 -04:00
$this->moveRecord($currentRecord, new Lenses());
}
2018-01-04 10:42:36 -05:00
}