for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @Author Chiarillo Massimo
*/
namespace Yandex\TranslatorBundle\Model;
class Key
{
protected $id;
protected $value;
protected $requests;
protected $enabled = false;
* @return mixed
public function getId()
return $this->id;
}
* @param mixed $id
* @return $this
public function setId($id)
$this->id = $id;
return $this;
public function getValue()
return $this->value;
* @param mixed $value
public function setValue($value)
$this->value = $value;
public function isEnabled()
return $this->enabled;
public function setEnabled($enabled)
$this->enabled = $enabled;