stream_stat() public méthode

This method is called in response to fstat().
public stream_stat ( ) : array
Résultat array See http://php.net/stat
 /**
  * @test
  */
 public function stream_statTest()
 {
     $this->mockStreamWrapper->expects($this->once())->method('resourceStat')->will($this->returnValue(true));
     $this->assertTrue($this->streamWrapperAdapter->stream_stat());
 }