for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Adlogix package.
*
* (c) Allan Segebarth <[email protected]>
* (c) Jean-Jacques Courtens <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Adlogix\Zf2Rollout\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @author Richard Fullmer <[email protected]>
* @ORM\Table(name="rollout_feature")
* @ORM\Entity()
class Feature
{
* @var string
* @ORM\Id
* @ORM\Column(type="string")
* @ORM\GeneratedValue(strategy="NONE")
private $name;
* @ORM\Column(type="text")
private $settings;
* @return string
public function getName()
return $this->name;
}
* @param string $name
public function setName($name)
$this->name = $name;
public function getSettings()
return $this->settings;
* @param string $settings
public function setSettings($settings)
$this->settings = $settings;