зеркало из https://github.com/microsoft/git.git
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>
This commit is contained in:
Родитель
e3331758f1
Коммит
9992fbd7a1
|
@ -0,0 +1,4 @@
|
||||||
|
class RIGHT
|
||||||
|
{
|
||||||
|
const FOO = 'ChangeMe';
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
function RIGHT()
|
||||||
|
{
|
||||||
|
return 'ChangeMe';
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
class Klass
|
||||||
|
{
|
||||||
|
public static function RIGHT()
|
||||||
|
{
|
||||||
|
return 'ChangeMe';
|
||||||
|
}
|
||||||
|
}
|
Загрузка…
Ссылка в новой задаче