for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Noodlehaus\StringParser;
/**
* Abstract string parser
*
* @package Config
* @author Jesus A. Domingo <[email protected]>
* @author Hassan Khan <[email protected]>
* @link https://github.com/noodlehaus/config
* @license MIT
*/
abstract class AbstractStringParser implements StringParserInterface
{
* String with configuration
* @var string
protected $configuration;
* Sets the string with configuration
* @param string $configuration
* @codeCoverageIgnore
public function __construct($configuration)
$this->configuration = $configuration;
}