File Manager Lite
Dir:
/home/u540325668/domains/mkjsindia.org/public_html/vendor/psy/psysh/test
Upload
[..]
ClassWithSecrets.php (895 B)
Edit
Rename
Del
CodeCleaner/
Rename
Del
Command/
Rename
Del
ConfigurationTest.php (8.04 KB)
Edit
Rename
Del
ContextTest.php (9.17 KB)
Edit
Rename
Del
Exception/
Rename
Del
FakeShell.php (529 B)
Edit
Rename
Del
Formatter/
Rename
Del
Input/
Rename
Del
ParserTestCase.php (2.4 KB)
Edit
Rename
Del
Readline/
Rename
Del
Reflection/
Rename
Del
ShellTest.php (13.18 KB)
Edit
Rename
Del
Sudo/
Rename
Del
SudoTest.php (2.71 KB)
Edit
Rename
Del
TabCompletion/
Rename
Del
Util/
Rename
Del
VersionUpdater/
Rename
Del
fixtures/
Rename
Del
tools/
Rename
Del
Edit: ClassWithSecrets.php
<?php /* * This file is part of Psy Shell. * * (c) 2012-2018 Justin Hileman * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Psy\Test; class ClassWithSecrets { private const PRIVATE_CONST = 'private and const'; private static $privateStaticProp = 'private and static and prop'; private $privateProp = 'private and prop'; 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'; } private function privateMethod($extra = null) { if ($extra !== null) { return 'private and method with ' . \json_encode($extra); } return 'private and method'; } }
Simpan