Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/laminas/laminas-config/src/Reader/
Upload File :
Current File : //var/www/www.indacotrentino.com/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);
}