From 26e3bdfce3f84345ba23f5a464f06a9b66faf3ca Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Mon, 7 Mar 2022 17:20:52 +0000 Subject: [PATCH] Note DI only usage in PHPDoc Signed-off-by: Christopher Ng --- lib/public/Files/SimpleFS/ISimpleFile.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 */