some more minor fixups (phpdoc, unused using)

This commit is contained in:
Philipp Holzer 2019-07-14 22:49:17 +02:00
parent a654470061
commit aa249adf6d
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
3 changed files with 24 additions and 8 deletions

View file

@ -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;