Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

Webserver1/Ovningar/Slutprojekt/vendor/vlucas/phpdotenv/src/Parser/

Entry.php
EntryParser.php
Lexer.php
Lines.php
Parser.php
ParserInterface.php
Value.php

ParserInterface.php

20 lines ASCII Unix (LF)
<?php

declare(strict_types=1);

namespace 
Dotenv\Parser;

interface 
ParserInterface
{
    
/**
     * Parse content into an entry array.
     *
     * @param string $content
     *
     * @throws \Dotenv\Exception\InvalidFileException
     *
     * @return \Dotenv\Parser\Entry[]
     */
    
public function parse(string $content);
}