Gc\View\Stream::urlStat PHP Method

urlStat() public method

Retrieve information about a file Always return empty array because data come from the database
public urlStat ( string $path ) : array
$path string Path
return array
    public function urlStat($path)
    {
        $path = $this->removeWrapperName($path);
        if (!isset(self::$data[$path])) {
            return false;
        }
        return array();
    }