%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/vendor/m1/env/src/Parser/ |
Upload File : |
<?php
/**
* This file is part of the m1\env library
*
* (c) m1 <hello@milescroxford.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package m1/env
* @version 2.0.0
* @author Miles Croxford <hello@milescroxford.com>
* @copyright Copyright (c) Miles Croxford <hello@milescroxford.com>
* @license http://github.com/m1/env/blob/master/LICENSE.md
* @link http://github.com/m1/env/blob/master/README.md Documentation
*/
namespace M1\Env\Parser;
/**
* The abstract parser for Env
*
* @since 0.2.0
*/
abstract class AbstractParser
{
/**
* The parent parser
*
* @var \M1\Env\Parser $parser
*/
protected $parser;
/**
* The abstract parser constructor for Env
*
* @param \M1\Env\Parser $parser The parent parser
*/
public function __construct($parser)
{
$this->parser = $parser;
}
}