Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace Dotenv\Parser;
6
 
7
interface ParserInterface
8
{
9
    /**
10
     * Parse content into an entry array.
11
     *
12
     * @param string $content
13
     *
14
     * @throws \Dotenv\Exception\InvalidFileException
15
     *
16
     * @return \Dotenv\Parser\Entry[]
17
     */
18
    public function parse(string $content);
19
}