diff options
author | Kana Natsuno <dev@whileimautomaton.net> | 2018-07-03 22:15:39 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-06 14:56:42 -0700 |
commit | 9992fbd7a1fdcc8fbaf0973a18d0eca94e1b7638 (patch) | |
tree | 2b0ec10362278fe194ec5b3437cd2989a5df0c34 /t/t4018/php-method | |
parent | Second batch for 2.19 cycle (diff) | |
download | tgif-9992fbd7a1fdcc8fbaf0973a18d0eca94e1b7638.tar.xz |
t4018: add missing test cases for PHP
A later patch changes the built-in PHP pattern. These test cases
demonstrate aspects of the pattern that we do not want to change.
Signed-off-by: Kana Natsuno <dev@whileimautomaton.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4018/php-method')
-rw-r--r-- | t/t4018/php-method | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t4018/php-method b/t/t4018/php-method new file mode 100644 index 0000000000..03af1a6d9d --- /dev/null +++ b/t/t4018/php-method @@ -0,0 +1,7 @@ +class Klass +{ + public static function RIGHT() + { + return 'ChangeMe'; + } +} |