mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-04-05 06:42:20 +00:00
Added draft for history
This commit is contained in:
35
application/symfony/src/Attribut/LogsAttribut.php
Normal file
35
application/symfony/src/Attribut/LogsAttribut.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace Infinito\Attribut;
|
||||
|
||||
use Doctrine\Common\Collections\Collection;
|
||||
use Infinito\Entity\Meta\History\LogInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*
|
||||
* @see LogsAttributInterface
|
||||
*/
|
||||
trait LogsAttribut
|
||||
{
|
||||
/**
|
||||
* @var Collection|LogInterface[]
|
||||
*/
|
||||
protected $logs;
|
||||
|
||||
/**
|
||||
* @param Collection|LogInterface[] $logs
|
||||
*/
|
||||
public function setLogs(Collection $logs): void
|
||||
{
|
||||
$this->logs = $logs;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Collection|LogInterface[]
|
||||
*/
|
||||
public function getLogs(): Collection
|
||||
{
|
||||
return $this->logs;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user