mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-05 23:39:52 +00:00
33 lines
710 B
PHP
33 lines
710 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\MainBundle\Notification;
|
|
|
|
use Chill\MainBundle\Entity\Notification;
|
|
|
|
class NotificationPersister implements NotificationPersisterInterface
|
|
{
|
|
private array $waitingNotifications = [];
|
|
|
|
/**
|
|
* @return array|Notification[]
|
|
*/
|
|
public function getWaitingNotifications(): array
|
|
{
|
|
return $this->waitingNotifications;
|
|
}
|
|
|
|
public function persist(Notification $notification): void
|
|
{
|
|
$this->waitingNotifications[] = $notification;
|
|
}
|
|
}
|