From: Art4 Date: Sun, 1 Dec 2024 20:51:57 +0000 (+0000) Subject: fix errors in BaseModel X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=139ddbd1deade09c2bc0e514ca1361747be38fd0;p=friendica.git fix errors in BaseModel --- diff --git a/src/BaseModel.php b/src/BaseModel.php index d7c4fae708..e79270843f 100644 --- a/src/BaseModel.php +++ b/src/BaseModel.php @@ -15,7 +15,7 @@ use Psr\Log\LoggerInterface; * The Model classes inheriting from this abstract class are meant to represent a single database record. * The associated table name has to be provided in the child class, and the table is expected to have a unique `id` field. * - * @property int id + * @property int $id */ abstract class BaseModel extends BaseDataTransferObject { @@ -41,8 +41,6 @@ abstract class BaseModel extends BaseDataTransferObject private $originalData = []; /** - * @param Database $dba - * @param LoggerInterface $logger * @param array $data Table row attributes */ public function __construct(Database $dba, LoggerInterface $logger, array $data = [])