24 lines
441 B
PHP
24 lines
441 B
PHP
<?php
|
|
|
|
namespace Engelsystem\Test\Unit\Controllers\Stub;
|
|
|
|
use Engelsystem\Controllers\HasUserNotifications;
|
|
|
|
class HasUserNotificationsImplementation
|
|
{
|
|
use HasUserNotifications;
|
|
|
|
public function add(string|array $value, string $type = 'messages')
|
|
{
|
|
$this->addNotification($value, $type);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function get(): array
|
|
{
|
|
return $this->getNotifications();
|
|
}
|
|
}
|