diff options
Diffstat (limited to 'lib/public/itempmanager.php')
-rw-r--r-- | lib/public/itempmanager.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/public/itempmanager.php b/lib/public/itempmanager.php index ac67a852a31..7ba5b1e7bff 100644 --- a/lib/public/itempmanager.php +++ b/lib/public/itempmanager.php @@ -22,12 +22,19 @@ namespace OCP; +/** + * Interface ITempManager + * + * @package OCP + * @since 8.0.0 + */ interface ITempManager { /** * Create a temporary file and return the path * * @param string $postFix * @return string + * @since 8.0.0 */ public function getTemporaryFile($postFix = ''); @@ -36,16 +43,19 @@ interface ITempManager { * * @param string $postFix * @return string + * @since 8.0.0 */ public function getTemporaryFolder($postFix = ''); /** * Remove the temporary files and folders generated during this request + * @since 8.0.0 */ public function clean(); /** * Remove old temporary files and folders that were failed to be cleaned + * @since 8.0.0 */ public function cleanOld(); } |