Skip to content

Commit

Permalink
Update Stream.php
Browse files Browse the repository at this point in the history
  • Loading branch information
VennDev authored Jul 30, 2023
1 parent 237a2e4 commit b56f313
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/vennv/vapm/Stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ public static function read(string $path) : Promise;
/**
* @throws Throwable
*
* Use this to write to a file or url.
* Use this to write to a file.
*/
public static function write(string $path, string $data) : Promise;

/**
* @throws Throwable
*
* Use this to append to a file or url.
* Use this to append to a file.
*/
public static function append(string $path, string $data) : Promise;

/**
* @throws Throwable
*
* Use this to delete a file or url.
* Use this to delete a file.
*/
public static function delete(string $path) : Promise;

Expand Down Expand Up @@ -275,4 +275,4 @@ public static function overWrite(string $path, string $data): Promise
});
}

}
}

0 comments on commit b56f313

Please sign in to comment.