for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Noodlehaus\Parser;
/**
* Abstract parser
*
* @package Config
* @author Jesus A. Domingo <[email protected]>
* @author Hassan Khan <[email protected]>
* @author Filip Š <[email protected]>
* @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)
$filename
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->config = $config;
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.