1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/15342] Update comments

PHPBB3-15342
This commit is contained in:
Rubén Calvo
2018-07-12 15:56:17 +02:00
parent af7e3662b8
commit e40daea4bd
7 changed files with 40 additions and 40 deletions

View File

@@ -23,7 +23,7 @@ interface adapter_interface
public function configure($options);
/**
* Dumps content into a file.
* Dumps content into a file
*
* @param string path The file to be written to.
* @param string content The data to write into the file.
@@ -47,7 +47,7 @@ interface adapter_interface
public function get_contents($path);
/**
* Checks the existence of files or directories.
* Checks the existence of files or directories
*
* @param string $path file/directory to check
*
@@ -56,7 +56,7 @@ interface adapter_interface
public function exists($path);
/**
* Removes files or directories.
* Removes files or directories
*
* @param string $path file/directory to remove
*
@@ -65,7 +65,7 @@ interface adapter_interface
public function delete($path);
/**
* Rename a file or a directory.
* Rename a file or a directory
*
* @param string $path_orig The original file/direcotry
* @param string $path_dest The target file/directory
@@ -76,7 +76,7 @@ interface adapter_interface
public function rename($path_orig, $path_dest);
/**
* Copies a file.
* Copies a file
*
* @param string $path_orig The original filename
* @param string $path_dest The target filename
@@ -87,7 +87,7 @@ interface adapter_interface
public function copy($path_orig, $path_dest);
/**
* Get direct link.
* Get direct link
*
* @param string $path The file
*
@@ -97,7 +97,7 @@ interface adapter_interface
public function get_link($path);
/*
* Get space available in bytes.
* Get space available in bytes
*
* @throws \phpbb\storage\exception\exception When unable to retrieve available storage space
*

View File

@@ -340,7 +340,7 @@ class local implements adapter_interface, stream_interface
}
/**
* Get file size.
* Get file size
*
* @param string $path The file
*
@@ -361,7 +361,7 @@ class local implements adapter_interface, stream_interface
}
/**
* Get file mimetype.
* Get file mimetype
*
* @param string $path The file
*
@@ -373,7 +373,7 @@ class local implements adapter_interface, stream_interface
}
/**
* Get image dimensions.
* Get image dimensions
*
* @param string $path The file
*
@@ -394,7 +394,7 @@ class local implements adapter_interface, stream_interface
}
/**
* Get image width.
* Get image width
*
* @param string $path The file
*
@@ -406,7 +406,7 @@ class local implements adapter_interface, stream_interface
}
/**
* Get image height.
* Get image height
*
* @param string $path The file
*