fix phpdoc

This commit is contained in:
Yuri Kuznetsov
2022-12-04 14:09:27 +02:00
parent 847ac0c20a
commit a5dc3aae70
13 changed files with 71 additions and 115 deletions
@@ -55,7 +55,7 @@ interface Repository
/**
* Store an entity.
*
* @phpstan-param TEntity $entity
* @param TEntity $entity
* @param array<string,mixed> $options
*/
public function save(Entity $entity, array $options = []): void;
@@ -63,7 +63,7 @@ interface Repository
/**
* Remove an entity.
*
* @phpstan-param TEntity $entity
* @param TEntity $entity
* @param array<string,mixed> $options
*/
public function remove(Entity $entity, array $options = []): void;