get() 공개 메소드

Example: $value = $blob->get();
public get ( ) : Psr\Http\Message\StreamInterface
리턴 Psr\Http\Message\StreamInterface
예제 #1
0
 public function testToString()
 {
     $blob = new Blob('hello world');
     $this->assertEquals((string) $blob->get(), (string) $blob);
 }