fix comments

This commit is contained in:
Yuri Kuznetsov
2021-04-26 11:45:49 +03:00
parent 2e3642671f
commit 3f91c33eae
+8 -8
View File
@@ -71,7 +71,7 @@ class EntityDefs
/**
* Get an attribute name list.
*
* @return array<int, string>
* @return string[]
*/
public function getAttributeNameList(): array
{
@@ -81,7 +81,7 @@ class EntityDefs
/**
* Get a relation name list.
*
* @return array<int, string>
* @return string[]
*/
public function getRelationNameList(): array
{
@@ -91,7 +91,7 @@ class EntityDefs
/**
* Get an index name list.
*
* @return array<int, string>
* @return string[]
*/
public function getIndexNameList(): array
{
@@ -101,7 +101,7 @@ class EntityDefs
/**
* Get a field name list.
*
* @return array<int, string>
* @return string[]
*/
public function getFieldNameList(): array
{
@@ -111,7 +111,7 @@ class EntityDefs
/**
* Get an attribute definitions list.
*
* @return array<int, AttributeDefs>
* @return AttributeDefs[]
*/
public function getAttributeList(): array
{
@@ -127,7 +127,7 @@ class EntityDefs
/**
* Get a relation definitions list.
*
* @return array<int, RelationDefs>
* @return RelationDefs[]
*/
public function getRelationList(): array
{
@@ -143,7 +143,7 @@ class EntityDefs
/**
* Get an index definitions list.
*
* @return array<int, IndexDefs>
* @return IndexDefs[]
*/
public function getIndexList(): array
{
@@ -159,7 +159,7 @@ class EntityDefs
/**
* Get a field definitions list.
*
* @return array<int, FieldDefs>
* @return FieldDefs[]
*/
public function getFieldList(): array
{