From 6125bab4e846c92d1df34d31bce20586c057bcc4 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Sun, 13 Nov 2016 01:13:39 +0100 Subject: [PATCH] php snippet --- vim/UltiSnips/php.snippets | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vim/UltiSnips/php.snippets b/vim/UltiSnips/php.snippets index 56d3a43..f02dc61 100644 --- a/vim/UltiSnips/php.snippets +++ b/vim/UltiSnips/php.snippets @@ -273,3 +273,9 @@ snippet title "Titelize in the Transformation" ${1:a text} ${1/\w+\s*/\u$0/g} endsnippet + +snippet ind "inheritdoc comment" b +/** + * {@inheritdoc} + */ +endsnippet