From 40d58647af60b44bd0cfd8ffa7e8ffc2ebb382f3 Mon Sep 17 00:00:00 2001 From: Noel De Martin Date: Mon, 10 Jul 2023 13:27:08 +0200 Subject: [PATCH] MOBILE-4362 dx: Add inheritdoc snippet --- .vscode/moodle.code-snippets | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.vscode/moodle.code-snippets b/.vscode/moodle.code-snippets index 9429495bb..d68e02b60 100644 --- a/.vscode/moodle.code-snippets +++ b/.vscode/moodle.code-snippets @@ -110,4 +110,13 @@ ], "description": "[Moodle] Create a Pure Singleton" }, + "Innherit doc": { + "prefix": "inheritdoc", + "body": [ + "/**", + " * @inheritdoc", + " */" + ], + "description": "Add @inheritdoc documentation block" + } }