| Current Path : /var/www/www.indacotrentino.com/www/vendor/laminas/laminas-db/src/Adapter/ |
| Current File : /var/www/www.indacotrentino.com/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();
}