mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-22 19:19:09 -04:00
ALPHA 3.0.2a
This commit is contained in:
4
vendor/psy/psysh/test/ClassWithSecrets.php
vendored
4
vendor/psy/psysh/test/ClassWithSecrets.php
vendored
@@ -20,7 +20,7 @@ class ClassWithSecrets
|
||||
private static function privateStaticMethod($extra = null)
|
||||
{
|
||||
if ($extra !== null) {
|
||||
return 'private and static and method with ' . json_encode($extra);
|
||||
return 'private and static and method with ' . \json_encode($extra);
|
||||
}
|
||||
|
||||
return 'private and static and method';
|
||||
@@ -29,7 +29,7 @@ class ClassWithSecrets
|
||||
private function privateMethod($extra = null)
|
||||
{
|
||||
if ($extra !== null) {
|
||||
return 'private and method with ' . json_encode($extra);
|
||||
return 'private and method with ' . \json_encode($extra);
|
||||
}
|
||||
|
||||
return 'private and method';
|
||||
|
||||
Reference in New Issue
Block a user