[ 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
/
wp-optimize
/
vendor
/
mrclay
/
props-dic
/
src
/
Props
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 BadMethodCallException.php
164 B
SET
[ EDIT ]
|
[ DEL ]
📄 Container.php
6,384 B
SET
[ EDIT ]
|
[ DEL ]
📄 FactoryUncallableException.php
168 B
SET
[ EDIT ]
|
[ DEL ]
📄 NotFoundException.php
233 B
SET
[ EDIT ]
|
[ DEL ]
📄 Pimple.php
1,432 B
SET
[ EDIT ]
|
[ DEL ]
📄 ValueUnresolvableException.php
168 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Pimple.php
<?php namespace Props; /** * A version of Pimple that uses property access instead of array access * * @author Steve Clay <steve@mrclay.org> */ class Pimple extends \Pimple\Container { /** * Sets a parameter or an object. * * @param string $id The unique identifier for the parameter or object * @param mixed $value The value of the parameter or a closure to define an object * @throws \RuntimeException Prevent override of a frozen service */ public function __set($id, $value) { $this->offsetSet($id, $value); } /** * Gets a parameter or an object. * * @param string $id The unique identifier for the parameter or object * @return mixed The value of the parameter or an object * @throws \InvalidArgumentException if the identifier is not defined */ public function __get($id) { return $this->offsetGet($id); } /** * Checks if a parameter or an object is set. * * @param string $id The unique identifier for the parameter or object * @return Boolean */ public function __isset($id) { return $this->offsetExists($id); } /** * Unsets a parameter or an object. * * @param string $id The unique identifier for the parameter or object */ public function __unset($id) { $this->offsetUnset($id); } }