forked from netgen/ezpublish-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEzcDbHandler.php
More file actions
23 lines (21 loc) · 754 Bytes
/
EzcDbHandler.php
File metadata and controls
23 lines (21 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* File containing an interface for the Zeta Database abstractions
*
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
* @version //autogentag//
*/
namespace eZ\Publish\Core\Persistence\Legacy;
/**
* This interface is added in Doctrine DBAL introduction for Legacy Storage
* and exists only to prevent breakages in the external storage Gateways of
* user implemented FieldTypes that might rely on its existence for setting
* data storage connection.
*
* @see \eZ\Publish\Core\FieldType\StorageGateway::setConnection()
* @see \eZ\Publish\Core\Persistence\Database\DatabaseHandler
*/
interface EzcDbHandler
{
}