| Current Path : /home/rtorresani/www/vendor/laminas/laminas-db/src/Adapter/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-db/src/Adapter/AdapterInterface.php |
<?php
namespace Laminas\Db\Adapter;
/**
* @property Driver\DriverInterface $driver
* @property Platform\PlatformInterface $platform
*/
interface AdapterInterface
{
/**
* @return Driver\DriverInterface
*/
public function getDriver();
/**
* @return Platform\PlatformInterface
*/
public function getPlatform();
}