Skip to content

Commit

Permalink
Fix some phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
alamirault authored and fabpot committed Feb 13, 2023
1 parent 23069c3 commit 277aa51
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Tests/Fixtures/MockStream/MockStream.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ class MockStream
/**
* Opens file or URL.
*
* @param string $path Specifies the URL that was passed to the original function
* @param string $mode The mode used to open the file, as detailed for fopen()
* @param int $options Holds additional flags set by the streams API
* @param string $opened_path If the path is opened successfully, and STREAM_USE_PATH is set in options,
* opened_path should be set to the full path of the file/resource that was actually opened
* @param string $path Specifies the URL that was passed to the original function
* @param string $mode The mode used to open the file, as detailed for fopen()
* @param int $options Holds additional flags set by the streams API
* @param string|null $opened_path If the path is opened successfully, and STREAM_USE_PATH is set in options,
* opened_path should be set to the full path of the file/resource that was actually opened
*/
public function stream_open(string $path, string $mode, int $options, string &$opened_path = null): bool
{
Expand Down

0 comments on commit 277aa51

Please sign in to comment.