aboutsummaryrefslogtreecommitdiff
path: root/src/Parser/ParserInterface.php
blob: b53e29f7b7b8d814d0e59fa6529cf4c28c5a6d8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/**
 * @author: Alexander Kiryukhin <alexander@kiryukhin.su>
 * @license: MIT
 */

namespace NeonXP\Dotenv\Parser;

use NeonXP\Dotenv\Types\KeyValue;

interface ParserInterface
{
    /**
     * @param string $line
     * @return KeyValue
     */
    public function parseLine(string $line): KeyValue;
}