offsetGet( $id ); } /** * Set item in container. * * Stores a parameter or service definition in the container. Parameters are stored * as-is, while service definitions (callables) are stored for lazy instantiation. * * @param string $id The unique identifier for the parameter or service. * @param mixed $value The value of the parameter or a callable service definition. * * @return void * * @throws \PopupMaker\Vendor\Pimple\Exception\FrozenServiceException If attempting to override a frozen service. */ public function set( $id, $value ) { $this->offsetSet( $id, $value ); } }