diff options
-rw-r--r-- | lib/public/Files/SimpleFS/ISimpleFile.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/public/Files/SimpleFS/ISimpleFile.php b/lib/public/Files/SimpleFS/ISimpleFile.php index c0db4cc22e9..8f1921cb7cb 100644 --- a/lib/public/Files/SimpleFS/ISimpleFile.php +++ b/lib/public/Files/SimpleFS/ISimpleFile.php @@ -28,7 +28,11 @@ use OCP\Files\NotFoundException; use OCP\Files\NotPermittedException; /** - * Interface ISimpleFile + * This interface allows to manage simple files. + * + * This interface must not be implemented in your application but + * instead should be used as a service and injected in your code with + * dependency injection. * * @since 11.0.0 */ |