update shared memory pool api

This commit is contained in:
yggverse 2024-07-17 12:52:27 +03:00
parent 3ff79cb0be
commit b18b9bb99e
3 changed files with 117 additions and 42 deletions

View file

@ -17,34 +17,34 @@ abstract class Connection implements \Yggverse\Yoda\Interface\Model\Connection
$this->_pool = $pool ? $pool : new Pool;
// Set defaults
$this->_pool->set(
$this->_pool->init(
'completed'
);
$this->_pool->set(
$this->_pool->init(
'title'
);
$this->_pool->set(
$this->_pool->init(
'subtitle'
);
$this->_pool->set(
$this->_pool->init(
'tooltip'
);
$this->_pool->set(
$this->_pool->init(
'mime'
);
$this->_pool->set(
$this->_pool->init(
'data'
);
$this->_pool->set(
$this->_pool->init(
'redirect'
);
$this->_pool->set(
$this->_pool->init(
'request'
);
}