Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chamilo-lms/src/CoreBundle/Entity/SequenceMethod.php

151 lines
2.4 KiB

<?php
declare(strict_types=1);
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Class SequenceMethod.
*
* @ORM\Table(name="sequence_method")
* @ORM\Entity
*/
class SequenceMethod
{
/**
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue()
*/
protected int $id;
/**
* @ORM\Column(name="description", type="text", nullable=false)
*/
protected string $description;
/**
* @ORM\Column(name="formula", type="text")
*/
protected string $formula;
/**
* @ORM\Column(name="assign", type="integer")
*/
protected string $assign;
/**
10 years ago
* @ORM\Column(name="met_type", type="string")
*/
protected string $metType;
/**
10 years ago
* @ORM\Column(name="act_false", type="string")
*/
protected string $actFalse;
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* @return SequenceMethod
*/
public function setDescription(string $description)
{
$this->description = $description;
return $this;
}
/**
* @return string
*/
public function getFormula()
{
return $this->formula;
}
/**
* @return SequenceMethod
*/
public function setFormula(string $formula)
{
$this->formula = $formula;
return $this;
}
/**
* @return string
*/
public function getAssign()
{
return $this->assign;
}
/**
* @return SequenceMethod
*/
public function setAssign(string $assign)
{
$this->assign = $assign;
return $this;
}
/**
* @return string
*/
public function getMetType()
{
return $this->metType;
}
/**
* @return SequenceMethod
*/
public function setMetType(string $metType)
{
$this->metType = $metType;
return $this;
}
/**
* @return string
*/
public function getActFalse()
{
return $this->actFalse;
}
/**
* @return SequenceMethod
*/
public function setActFalse(string $actFalse)
{
$this->actFalse = $actFalse;
return $this;
}
}