for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sludio\HelperBundle\Translatable\Entity;
/**
* Translation.
*/
class Translation
{
* @var int
private $id;
* @var string
private $locale;
private $objectClass;
private $field;
private $foreignKey;
private $content;
* Get id.
*
* @return int
public function getId()
return $this->id;
}
* Get locale.
* @return string
public function getLocale()
return $this->locale;
* Set locale.
* @param string $locale
* @return $this
public function setLocale($locale)
$this->locale = $locale;
return $this;
* Get objectClass.
public function getObjectClass()
return $this->objectClass;
* Set objectClass.
* @param string $objectClass
public function setObjectClass($objectClass)
$this->objectClass = $objectClass;
* Get field.
public function getField()
return $this->field;
* Set field.
* @param string $field
public function setField($field)
$this->field = $field;
* Get foreignKey.
public function getForeignKey()
return $this->foreignKey;
* Set foreignKey.
* @param int $foreignKey
public function setForeignKey($foreignKey)
$this->foreignKey = $foreignKey;
* Get content.
public function getContent()
return $this->content;
* Set content.
* @param string $content
public function setContent($content)
$this->content = $content;