mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
30 lines
493 B
PHP
30 lines
493 B
PHP
<?php
|
|
|
|
namespace Infinito\Entity\Source\Operation\Attribut;
|
|
|
|
use Doctrine\Common\Collections\Collection;
|
|
|
|
trait OperandsAttribut
|
|
{
|
|
/**
|
|
* @var Collection
|
|
*/
|
|
protected $operands;
|
|
|
|
/**
|
|
* @param Collection $collection
|
|
*/
|
|
public function setOperands(Collection $operands): void
|
|
{
|
|
$this->operands = $operands;
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getOperands(): Collection
|
|
{
|
|
return $this->operands;
|
|
}
|
|
}
|