From 3f91c33eae092fa17e5549986ea50390af5f4762 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Mon, 26 Apr 2021 11:45:49 +0300 Subject: [PATCH] fix comments --- application/Espo/ORM/Defs/EntityDefs.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/application/Espo/ORM/Defs/EntityDefs.php b/application/Espo/ORM/Defs/EntityDefs.php index 861fb97c00..da468ab834 100644 --- a/application/Espo/ORM/Defs/EntityDefs.php +++ b/application/Espo/ORM/Defs/EntityDefs.php @@ -71,7 +71,7 @@ class EntityDefs /** * Get an attribute name list. * - * @return array + * @return string[] */ public function getAttributeNameList(): array { @@ -81,7 +81,7 @@ class EntityDefs /** * Get a relation name list. * - * @return array + * @return string[] */ public function getRelationNameList(): array { @@ -91,7 +91,7 @@ class EntityDefs /** * Get an index name list. * - * @return array + * @return string[] */ public function getIndexNameList(): array { @@ -101,7 +101,7 @@ class EntityDefs /** * Get a field name list. * - * @return array + * @return string[] */ public function getFieldNameList(): array { @@ -111,7 +111,7 @@ class EntityDefs /** * Get an attribute definitions list. * - * @return array + * @return AttributeDefs[] */ public function getAttributeList(): array { @@ -127,7 +127,7 @@ class EntityDefs /** * Get a relation definitions list. * - * @return array + * @return RelationDefs[] */ public function getRelationList(): array { @@ -143,7 +143,7 @@ class EntityDefs /** * Get an index definitions list. * - * @return array + * @return IndexDefs[] */ public function getIndexList(): array { @@ -159,7 +159,7 @@ class EntityDefs /** * Get a field definitions list. * - * @return array + * @return FieldDefs[] */ public function getFieldList(): array {