Prado\Data\SqlMap\Configuration\TSqlMapCacheModel::initialize PHP Метод

initialize() публичный Метод

Initialize the cache implementation, sets the actual cache contain if supplied.
public initialize ( $cache = null )
    public function initialize($cache = null)
    {
        if ($cache === null) {
            $this->_cache = Prado::createComponent($this->getImplementationClass(), $this);
        } else {
            $this->_cache = $cache;
        }
    }