芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/cms.mgaplay.com.br/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/WrapperInterface.php
*/ interface WrapperInterface { /** * Class constructor, must always wrap another adapter. * * @param \Phinx\Db\Adapter\AdapterInterface $adapter */ public function __construct(AdapterInterface $adapter); /** * Sets the database adapter to proxy commands to. * * @param \Phinx\Db\Adapter\AdapterInterface $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(); }