From 9b7b7c2665b521b49f96f6f9047210c54b940968 Mon Sep 17 00:00:00 2001 From: Vasily Belosloodcev Date: Tue, 13 Apr 2021 16:35:23 +0500 Subject: [PATCH] fixed phpdocs --- src/NestedSetRepositoryAbstract.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/NestedSetRepositoryAbstract.php b/src/NestedSetRepositoryAbstract.php index 375d7c5..bd78829 100644 --- a/src/NestedSetRepositoryAbstract.php +++ b/src/NestedSetRepositoryAbstract.php @@ -122,7 +122,6 @@ public function findAncestors(NestedSetInterface $entity): array * @param NestedSetInterface $node * @param NestedSetInterface|null $parent * @throws \Doctrine\ORM\ORMException - * @throws \Doctrine\Persistence\Mapping\MappingException */ public function append(NestedSetInterface $node, NestedSetInterface $parent = null): void { @@ -139,7 +138,6 @@ public function append(NestedSetInterface $node, NestedSetInterface $parent = nu * @param NestedSetInterface $node * @param NestedSetInterface|null $parent * @throws \Doctrine\ORM\ORMException - * @throws \Doctrine\Persistence\Mapping\MappingException */ public function prepend(NestedSetInterface $node, NestedSetInterface $parent = null): void { @@ -154,9 +152,7 @@ public function prepend(NestedSetInterface $node, NestedSetInterface $parent = n /** * @param NestedSetInterface $node - * * @throws \Doctrine\ORM\ORMException - * @throws \Doctrine\Persistence\Mapping\MappingException */ public function remove(NestedSetInterface $node): void {