%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/doctrine/dbal/src/Driver/ |
Current File : /home/graphicd/public_html/vebto/vendor/doctrine/dbal/src/Driver/AbstractSQLiteDriver.php |
<?php namespace Doctrine\DBAL\Driver; use Doctrine\DBAL\Connection; use Doctrine\DBAL\Driver; use Doctrine\DBAL\Driver\API\ExceptionConverter; use Doctrine\DBAL\Driver\API\SQLite; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Platforms\SqlitePlatform; use Doctrine\DBAL\Schema\SqliteSchemaManager; use function assert; /** * Abstract base implementation of the {@see Doctrine\DBAL\Driver} interface for SQLite based drivers. */ abstract class AbstractSQLiteDriver implements Driver { /** * {@inheritdoc} */ public function getDatabasePlatform() { return new SqlitePlatform(); } /** * {@inheritdoc} */ public function getSchemaManager(Connection $conn, AbstractPlatform $platform) { assert($platform instanceof SqlitePlatform); return new SqliteSchemaManager($conn, $platform); } public function getExceptionConverter(): ExceptionConverter { return new SQLite\ExceptionConverter(); } }