13 lines
290 B
PHP
13 lines
290 B
PHP
<?php
|
|
// IDbConnectionInfo.php
|
|
// Created: 2021-04-30
|
|
// Updated: 2022-02-16
|
|
|
|
namespace Index\Data;
|
|
|
|
/**
|
|
* Base type for database connection info.
|
|
*
|
|
* Any database backend should have its own implementation of this, there are no baseline requirements.
|
|
*/
|
|
interface IDbConnectionInfo {}
|