/var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Db/Adapter
NameSizeModeActions
AbstractAdapter.php111370644editdlrm
AdapterFactory.php47280644editdlrm
AdapterInterface.php140990644editdlrm
AdapterWrapper.php99920644editdlrm
DirectActionInterface.php42410644editdlrm
MysqlAdapter.php512800644editdlrm
PdoAdapter.php323650644editdlrm
PostgresAdapter.php514270644editdlrm
ProxyAdapter.php40450644editdlrm
SQLiteAdapter.php605500644editdlrm
SqlServerAdapter.php446180644editdlrm
TablePrefixAdapter.php162200644editdlrm
TimedOutputAdapter.php126130644editdlrm
UnsupportedColumnTypeException.php3930644editdlrm
WrapperInterface.php9810644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/WrapperInterface.php (981B)
*/ interface WrapperInterface { /** * Class constructor, must always wrap another adapter. * * @param \Phinx\Db\Adapter\AdapterInterface $adapter Adapter */ public function __construct(AdapterInterface $adapter); /** * Sets the database adapter to proxy commands to. * * @param \Phinx\Db\Adapter\AdapterInterface $adapter Adapter * @return \Phinx\Db\Adapter\AdapterInterface */ public function setAdapter(AdapterInterface $adapter): AdapterInterface; /** * Gets the database adapter. * * @throws \RuntimeException if the adapter has not been set * @return \Phinx\Db\Adapter\AdapterInterface */ public function getAdapter(): AdapterInterface; }