mirror of
https://github.com/friendica/friendica
synced 2025-05-04 13:04:10 +02:00
some more minor fixups (phpdoc, unused using)
This commit is contained in:
parent
a654470061
commit
aa249adf6d
3 changed files with 24 additions and 8 deletions
|
@ -4,11 +4,18 @@ namespace Friendica\Model\Config;
|
|||
|
||||
use Friendica\Database\Database;
|
||||
|
||||
/**
|
||||
* The DB-based model of (P-)Config values
|
||||
* Encapsulates db-calls in case of config queries
|
||||
*/
|
||||
abstract class DbaConfig
|
||||
{
|
||||
/** @var Database */
|
||||
protected $dba;
|
||||
|
||||
/**
|
||||
* @param Database $dba The database connection of this model
|
||||
*/
|
||||
public function __construct(Database $dba)
|
||||
{
|
||||
$this->dba = $dba;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue