Box\Spout\Reader\AbstractReader::isPhpStream PHP Метод

isPhpStream() защищенный Метод

..)
protected isPhpStream ( string $filePath ) : boolean
$filePath string Path of the file to be read
Результат boolean Whether the given path maps to a PHP stream
    protected function isPhpStream($filePath)
    {
        $streamScheme = $this->getStreamWrapperScheme($filePath);
        return $streamScheme === 'php';
    }