climbx/Dotenv

View on GitHub
src/Parser/ParserInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Climbx\Dotenv\Parser;

interface ParserInterface
{
    /**
     * Returns an array of key => value from a .env file content
     *
     * @param array $fileContent Array of the file lines.
     *
     * @return array
     */
    public function getParsedData(array $fileContent): array;
}