aboutsummaryrefslogblamecommitdiff
path: root/src/Parser/ParserInterface.php
blob: f67ffb55a97947decb06706a1fea2b2c952a3c88 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
     

                        








                                                        



                                







                                                      
<?php
declare(strict_types=1);

/**
 * @author: Alexander Kiryukhin <alexander@kiryukhin.su>
 * @license: MIT
 */

namespace NeonXP\Dotenv\Parser;

use NeonXP\Dotenv\Types\KeyValue;

/**
 * Interface ParserInterface
 * @package NeonXP\Dotenv\Parser
 */
interface ParserInterface
{
    /**
     * @param string $line
     * @return KeyValue
     */
    public function parseLine(string $line): KeyValue;
}