Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-db/src/Adapter/
Upload File :
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();
}