File: /home/ohirex/web/ohirex.com/public_html/join/config/Parser/AbstractParser.php
<?php
namespace Noodlehaus\Parser;
/**
* Abstract parser
*
* @package Config
* @author Jesus A. Domingo <jesus.domingo@gmail.com>
* @author Hassan Khan <contact@hassankhan.me>
* @author Filip Š <projects@filips.si>
* @link https://github.com/noodlehaus/config
* @license MIT
*/
abstract class AbstractParser implements ParserInterface
{
/**
* String with configuration
*
* @var string
*/
protected $config;
/**
* Sets the string with configuration
*
* @param string $config
* @param string $filename
*
* @codeCoverageIgnore
*/
public function __construct($config, $filename = null)
{
$this->config = $config;
}
}