Neos\Flow\ResourceManagement\Streams\StreamWrapperInterface::resourceStat PHP Метод

resourceStat() публичный Метод

This method is called in response to fstat().
public resourceStat ( ) : array
Результат array See http://php.net/stat
    public function resourceStat();

Usage Example

 /**
  * Retrieve information about a file resource.
  *
  * This method is called in response to fstat().
  *
  * @return array See http://php.net/stat
  */
 public function stream_stat()
 {
     return $this->streamWrapper->resourceStat();
 }