Neos\Flow\ResourceManagement\Streams\StreamWrapperAdapter::stream_stat PHP Метод

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

This method is called in response to fstat().
public stream_stat ( ) : array
Результат array See http://php.net/stat
    public function stream_stat()
    {
        return $this->streamWrapper->resourceStat();
    }

Usage Example

 /**
  * @test
  */
 public function stream_statTest()
 {
     $this->mockStreamWrapper->expects($this->once())->method('resourceStat')->will($this->returnValue(true));
     $this->assertTrue($this->streamWrapperAdapter->stream_stat());
 }