diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-06-14 20:45:24 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-06-14 20:45:24 +0200 |
commit | d95bca7f2f7a79a79b17e5dd34f4a1a87c1210aa (patch) | |
tree | 52c9b9b9e8a152e7cf02294b89462080f85047c7 | |
parent | 3801e5943bd50b9130561e909eb7504d046379fc (diff) | |
download | dotfiles-d95bca7f2f7a79a79b17e5dd34f4a1a87c1210aa.tar.gz dotfiles-d95bca7f2f7a79a79b17e5dd34f4a1a87c1210aa.tar.xz |
vim php snippet: Fix coding style
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | .vim/UltiSnips/php.snippets | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/.vim/UltiSnips/php.snippets b/.vim/UltiSnips/php.snippets index 86c4ee1..f57721a 100644 --- a/.vim/UltiSnips/php.snippets +++ b/.vim/UltiSnips/php.snippets @@ -26,17 +26,14 @@ class `!p snip.rv = re.match(r'.*(?=\.)', fn).group() ` extends \test\Test { - public function __construct() - { + public function __construct() { parent::__construct(); } - public function init() - { + public function init() { } - public function cleanup() - { + public function cleanup() { } $0 |