mirror of
https://github.com/friendica/friendica
synced 2025-03-03 21:08:25 +00:00
14 lines
198 B
PHP
14 lines
198 B
PHP
<?php
|
|
|
|
namespace Friendica\Core\Config;
|
|
|
|
abstract class AbstractDbaConfigAdapter
|
|
{
|
|
/** @var bool */
|
|
protected $connected = true;
|
|
|
|
public function isConnected()
|
|
{
|
|
return $this->connected;
|
|
}
|
|
}
|