Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/async-aws/.././psr/../vlucas/phpdotenv/src/Loader/../Parser
الملفات الموجودة في هذا الـ Path:
.
..
Entry.php
EntryParser.php
Lexer.php
Lines.php
Parser.php
ParserInterface.php
Value.php

مشاهدة ملف: ParserInterface.php

<?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);
}