blob: b53e29f7b7b8d814d0e59fa6529cf4c28c5a6d8f (
plain) (
tree)
|
|
<?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;
}
|