Bluz\Common\Container\Container::doGetContainer PHP Method

doGetContainer() protected method

Get value by key
protected doGetContainer ( string $key ) : mixed
$key string
return mixed
    protected function doGetContainer($key)
    {
        if ($this->doContainsContainer($key)) {
            return $this->container[$key];
        } else {
            return null;
        }
    }