mirror of
https://github.com/DirectoryLister/DirectoryLister.git
synced 2025-08-25 15:01:16 +02:00
Applied automated coding standard fixes
This commit is contained in:
@@ -77,8 +77,6 @@ class CallbackStream implements StreamInterface
|
||||
|
||||
/**
|
||||
* Returns true if the stream is at the end of the stream.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function eof(): bool
|
||||
{
|
||||
@@ -87,8 +85,6 @@ class CallbackStream implements StreamInterface
|
||||
|
||||
/**
|
||||
* Returns whether the stream is seekable.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isSeekable(): bool
|
||||
{
|
||||
@@ -116,14 +112,12 @@ class CallbackStream implements StreamInterface
|
||||
* otherwise, it will perform a seek(0).
|
||||
*
|
||||
* @see seek()
|
||||
* @link http://www.php.net/manual/en/function.fseek.php
|
||||
* @see http://www.php.net/manual/en/function.fseek.php
|
||||
*/
|
||||
public function rewind(): void {}
|
||||
|
||||
/**
|
||||
* Returns whether the stream is writable.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isWritable(): bool
|
||||
{
|
||||
@@ -144,8 +138,6 @@ class CallbackStream implements StreamInterface
|
||||
|
||||
/**
|
||||
* Returns whether the stream is readable.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isReadable(): bool
|
||||
{
|
||||
@@ -176,8 +168,6 @@ class CallbackStream implements StreamInterface
|
||||
|
||||
/**
|
||||
* Returns the remaining contents in a string.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getContents(): string
|
||||
{
|
||||
|
Reference in New Issue
Block a user