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

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

This method is called in response to ftell().
public stream_tell ( ) : integer
Результат integer Should return the current position of the stream.
    public function stream_tell()
    {
        return $this->streamWrapper->tell();
    }

Usage Example

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