for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Habu\ComposerScriptUtils\Configuration;
use Habu\ComposerScriptUtils\Interfaces\ConfigurationHandlerInterface;
/**
* Class AbstractConfigurationHandler.
*
* @author Ruben Knol <[email protected]>
*/
abstract class AbstractConfigurationHandler implements ConfigurationHandlerInterface
{
* @var string
private $key;
* {@inheritdoc}
public function setKey($key)
$this->key = $key;
}
* @return string
protected function getKey()
return $this->key;
abstract public function get($value);