aboutsummaryrefslogtreecommitdiff
path: root/src/Parser/ParserInterface.php
blob: 4e63b339eb4690a2932a257a68d686126098e8d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
declare(strict_types=1);

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

namespace NeonXP\Dotenv\Parser;

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