Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/laminas/laminas-config/src/Reader/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-config/src/Reader/ReaderInterface.php

<?php

namespace Laminas\Config\Reader;

interface ReaderInterface
{
    /**
     * Read from a file and create an array
     *
     * @param  string $filename
     * @return array
     */
    public function fromFile($filename);

    /**
     * Read from a string and create an array
     *
     * @param  string $string
     * @return array|bool
     */
    public function fromString($string);
}