Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Documentation improvement Zend\View\Stream #3973

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions library/Zend/View/Stream.php
Expand Up @@ -47,6 +47,8 @@ class Stream


/** /**
* Opens the script file and converts markup. * Opens the script file and converts markup.
*
* @return bool
*/ */
public function stream_open($path, $mode, $options, &$opened_path) public function stream_open($path, $mode, $options, &$opened_path)
{ {
Expand Down Expand Up @@ -92,6 +94,8 @@ public function url_stat()


/** /**
* Reads from the stream. * Reads from the stream.
*
* @return string|false
*/ */
public function stream_read($count) public function stream_read($count)
{ {
Expand All @@ -103,6 +107,8 @@ public function stream_read($count)


/** /**
* Tells the current position in the stream. * Tells the current position in the stream.
*
* @return int
*/ */
public function stream_tell() public function stream_tell()
{ {
Expand All @@ -112,6 +118,8 @@ public function stream_tell()


/** /**
* Tells if we are at the end of the stream. * Tells if we are at the end of the stream.
*
* @return bool
*/ */
public function stream_eof() public function stream_eof()
{ {
Expand All @@ -121,6 +129,8 @@ public function stream_eof()


/** /**
* Stream statistics. * Stream statistics.
*
* @return array
*/ */
public function stream_stat() public function stream_stat()
{ {
Expand All @@ -130,6 +140,8 @@ public function stream_stat()


/** /**
* Seek to a specific point in the stream. * Seek to a specific point in the stream.
*
* @return bool
*/ */
public function stream_seek($offset, $whence) public function stream_seek($offset, $whence)
{ {
Expand Down