From 5c0fc719a24b9017b13c01ca85029e323d645405 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Wed, 27 Mar 2019 14:42:52 -0700 Subject: [PATCH] Fix #71138 --- extensions/php/snippets/php.snippets.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/php/snippets/php.snippets.json b/extensions/php/snippets/php.snippets.json index 1f2a07bef20..a0705e3aed4 100644 --- a/extensions/php/snippets/php.snippets.json +++ b/extensions/php/snippets/php.snippets.json @@ -254,8 +254,8 @@ "body": [ "try {", "\t${1://code...}", - "} catch (${2:\\Throwable} ${3:$$th}) {", - "\t${4://throw $$th;}", + "} catch (${2:\\Throwable} ${3:\\$th}) {", + "\t${4://throw \\$th;}", "}" ], "description": "Try catch block"