diff options
| author | Junio C Hamano <gitster@pobox.com> | 2020-10-27 15:09:46 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-10-27 15:09:46 -0700 |
| commit | a8a49ebf61449f80d8c5ea2f9768f0ca590e51dd (patch) | |
| tree | 7e2d330cdb4f7784076ed0e950d85b6b15b9cf47 /t/t4018/php-final-method | |
| parent | 1d1c4a875900d69c7f0a31e44c3e370dc80ab1ce (diff) | |
| parent | aff92827b54f4b7f9e339982a49bab4bdbd1fc55 (diff) | |
| download | git-a8a49ebf61449f80d8c5ea2f9768f0ca590e51dd.tar.xz | |
Merge branch 'js/userdiff-php'
Userdiff for PHP update.
* js/userdiff-php:
userdiff: PHP: catch "abstract" and "final" functions
Diffstat (limited to 't/t4018/php-final-method')
| -rw-r--r-- | t/t4018/php-final-method | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t4018/php-final-method b/t/t4018/php-final-method new file mode 100644 index 0000000000..537fb8ad9a --- /dev/null +++ b/t/t4018/php-final-method @@ -0,0 +1,7 @@ +class Klass +{ + final public function RIGHT(): string + { + return 'ChangeMe'; + } +} |
