Files
infinito/application/symfony/src/Entity/Source/Operation/Attribut/OperandsAttribut.php
2019-02-17 14:33:19 +01:00

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;
}
}