Skip to content

Commit

Permalink
fix(IStorage): Use false instead of bool intersection type to match i…
Browse files Browse the repository at this point in the history
…mplementations

Signed-off-by: provokateurin <kate@provokateurin.de>
  • Loading branch information
provokateurin committed Sep 20, 2024
1 parent 6e5a840 commit 27d8eff
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions lib/public/Files/Storage/IStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public function is_file($path);
* only the following keys are required in the result: size and mtime
*
* @param string $path
* @return array|bool
* @return array|false
* @since 9.0.0
*/
public function stat($path);
Expand All @@ -103,7 +103,7 @@ public function stat($path);
* see https://www.php.net/manual/en/function.filetype.php
*
* @param string $path
* @return string|bool
* @return string|false
* @since 9.0.0
*/
public function filetype($path);
Expand All @@ -113,7 +113,7 @@ public function filetype($path);
* The result for filesize when called on a folder is required to be 0
*
* @param string $path
* @return false|int|float
* @return int|float|false
* @since 9.0.0
*/
public function filesize($path);
Expand Down Expand Up @@ -186,7 +186,7 @@ public function file_exists($path);
* see https://www.php.net/manual/en/function.filemtime.php
*
* @param string $path
* @return int|bool
* @return int|false
* @since 9.0.0
*/
public function filemtime($path);
Expand Down Expand Up @@ -244,7 +244,7 @@ public function copy($source, $target);
*
* @param string $path
* @param string $mode
* @return resource|bool
* @return resource|false
* @since 9.0.0
*/
public function fopen($path, $mode);
Expand All @@ -254,7 +254,7 @@ public function fopen($path, $mode);
* The mimetype for a folder is required to be "httpd/unix-directory"
*
* @param string $path
* @return string|bool
* @return string|false
* @since 9.0.0
*/
public function getMimeType($path);
Expand All @@ -265,16 +265,16 @@ public function getMimeType($path);
* @param string $type
* @param string $path
* @param bool $raw
* @return string|bool
* @return string|false
* @since 9.0.0
*/
public function hash($type, $path, $raw = false);

/**
* see https://www.php.net/manual/en/function.free_space.php
* see https://www.php.net/manual/en/function.disk-free-space.php
*
* @param string $path
* @return int|float|bool
* @return int|float|false
* @since 9.0.0
*/
public function free_space($path);
Expand Down Expand Up @@ -352,7 +352,7 @@ public function instanceOfStorage($class);
* For now the returned array can hold the parameter url - in future more attributes might follow.
*
* @param string $path
* @return array|bool
* @return array|false
* @since 9.0.0
*/
public function getDirectDownload($path);
Expand Down

0 comments on commit 27d8eff

Please sign in to comment.