Current Path: > home > transcarter > > www > wp-content > plugins > wp-optimize > > vendor > mrclay > props-dic > src > Props
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.135 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
BadMethodCallException.php | File | 164 bytes | July 17 2025 21:05:49. | |
Container.php | File | 6384 bytes | July 17 2025 21:05:49. | |
FactoryUncallableException.php | File | 168 bytes | July 17 2025 21:05:49. | |
NotFoundException.php | File | 233 bytes | July 17 2025 21:05:49. | |
Pimple.php | File | 1432 bytes | July 17 2025 21:05:49. | |
ValueUnresolvableException.php | File | 168 bytes | July 17 2025 21:05:49. |
<?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); } }
SILENT KILLER Tool