for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace QueerCodingGirl\Rollout\Feature;
/**
* Class CoreFeature
* @package QueerCodingGirl\Rollout\Feature
*/
class CoreFeature extends FeatureAbstract
{
* @param string $name A unique name for this feature.
* @param string|null $configString For the format definition see RolloutableInterface::configureByConfigString()
public function __construct($name, $configString = null)
$this->name = $name;
$this->clearConfig();
if (null !== $configString) {
$this->configureByConfigString($configString);
}