for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pimple;
/**
* Class ContainerPlus
*
* Extends original container to allow access to properties and function to document them
* @package Pimple
*/
class ContainerPlus extends Container {
public function __set($name, $value) {
$this->offsetSet($name, $value);
}
public function __get($name) {
return $this->offsetGet($name);
public function __isset($name) {
return $this->offsetExists($name);
public function __unset($name) {
$this->offsetUnset($name);
public function __call($name, $arguments) {
return call_user_func_array($this->$name, $arguments);