/var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Adapter
NameSizeModeActions
AbstractAdapter.php103580644editdlrm
AdapterFactory.php42950644editdlrm
AdapterInterface.php133330644editdlrm
AdapterWrapper.php93770644editdlrm
DirectActionInterface.php41240644editdlrm
MysqlAdapter.php445580644editdlrm
PdoAdapter.php293510644editdlrm
PostgresAdapter.php459150644editdlrm
ProxyAdapter.php36000644editdlrm
SQLiteAdapter.php517860644editdlrm
SqlServerAdapter.php417560644editdlrm
TablePrefixAdapter.php150790644editdlrm
TimedOutputAdapter.php123690644editdlrm
UnsupportedColumnTypeException.php3930644editdlrm
WrapperInterface.php9590644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/WrapperInterface.php (959B)
*/ 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); /** * Gets the database adapter. * * @throws \RuntimeException if the adapter has not been set * * @return \Phinx\Db\Adapter\AdapterInterface */ public function getAdapter(); }