aboutsummaryrefslogtreecommitdiffstats
path: root/t/t4018/php-trait
diff options
context:
space:
mode:
authorKana Natsuno <dev@whileimautomaton.net>2018-07-03 22:15:40 +0900
committerJunio C Hamano <gitster@pobox.com>2018-07-06 14:59:28 -0700
commit1ab631647e3addd247c5482e8a3d4c9df7978c62 (patch)
tree1bbc145b8273ce532ce87863c235fdce1162cf47 /t/t4018/php-trait
parentt4018: add missing test cases for PHP (diff)
downloadgit-1ab631647e3addd247c5482e8a3d4c9df7978c62.tar.gz
git-1ab631647e3addd247c5482e8a3d4c9df7978c62.zip
userdiff: support new keywords in PHP hunk header
Recent version of PHP supports interface, trait, abstract class and final class. This patch fixes the PHP hunk header regexp to support all of these keywords. Signed-off-by: Kana Natsuno <dev@whileimautomaton.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4018/php-trait')
-rw-r--r--t/t4018/php-trait7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t4018/php-trait b/t/t4018/php-trait
new file mode 100644
index 0000000000..65b8c82a61
--- /dev/null
+++ b/t/t4018/php-trait
@@ -0,0 +1,7 @@
+trait RIGHT
+{
+ public function foo($ChangeMe)
+ {
+ return 'foo';
+ }
+}