mirror of
https://github.com/friendica/friendica
synced 2025-03-25 16:01:26 +00:00
13 lines
178 B
PHP
13 lines
178 B
PHP
<?php
|
|
|
|
namespace Friendica\Core\Config;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
abstract class AbstractDbaConfigAdapter
|
|
{
|
|
public function isConnected()
|
|
{
|
|
return DBA::connected();
|
|
}
|
|
}
|