15 lines
328 B
PHP
15 lines
328 B
PHP
<?php
|
|
|
|
namespace App\EventLog\Action\Result;
|
|
|
|
use App\EventLog\Framework\Entity\EventLog;
|
|
use OneToMany\RichBundle\Contract\ResultInterface;
|
|
|
|
/** @implements ResultInterface<AddEventLogResult> */
|
|
class AddEventLogResult implements ResultInterface
|
|
{
|
|
public function __construct(
|
|
public EventLog $eventLog,
|
|
) {}
|
|
}
|