diff --git a/application/Espo/ORM/BaseEntity.php b/application/Espo/ORM/BaseEntity.php index 62520a32b3..4389362644 100644 --- a/application/Espo/ORM/BaseEntity.php +++ b/application/Espo/ORM/BaseEntity.php @@ -177,8 +177,10 @@ class BaseEntity implements Entity $p1 = $attribute; $p2 = $value; - /** @var mixed $p1 */ - /** @var mixed $p2 */ + /** + * @var mixed $p1 + * @var mixed $p2 + */ if (is_array($p1) || is_object($p1)) { if (is_object($p1)) { diff --git a/application/Espo/ORM/Repository/RDBRepository.php b/application/Espo/ORM/Repository/RDBRepository.php index 9ac3f61702..0b7d49f120 100644 --- a/application/Espo/ORM/Repository/RDBRepository.php +++ b/application/Espo/ORM/Repository/RDBRepository.php @@ -97,7 +97,7 @@ class RDBRepository implements Repository $entity->populateDefaults(); } - /** @var TEntity $entity */ + /** @var TEntity */ return $entity; }