- Timestamp:
- 08/09/2022 11:32:01 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r53014 r53872 664 664 * @abstract 665 665 * 666 * @param string $ filePath to file or directory.667 * @return bool Whether $ fileexists or not.668 */ 669 public function exists( $ file) {666 * @param string $path Path to file or directory. 667 * @return bool Whether $path exists or not. 668 */ 669 public function exists( $path ) { 670 670 return false; 671 671 } … … 716 716 * @abstract 717 717 * 718 * @param string $ filePath to file or directory.719 * @return bool Whether $ fileis writable.720 */ 721 public function is_writable( $ file) {718 * @param string $path Path to file or directory. 719 * @return bool Whether $path is writable. 720 */ 721 public function is_writable( $path ) { 722 722 return false; 723 723 }
Note: See TracChangeset
for help on using the changeset viewer.