From 3bcf12718cc7e1af2c2eef951228ce27d777e2d9 Mon Sep 17 00:00:00 2001 From: Adrien Dupuis <61695653+adriendupuis@users.noreply.github.com> Date: Fri, 27 Dec 2024 08:19:23 +0100 Subject: [PATCH] Add missing docblock summary to NotFoundException (#142) --- src/contracts/Exceptions/NotFoundException.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/contracts/Exceptions/NotFoundException.php b/src/contracts/Exceptions/NotFoundException.php index a78efd352..4094502b3 100644 --- a/src/contracts/Exceptions/NotFoundException.php +++ b/src/contracts/Exceptions/NotFoundException.php @@ -9,10 +9,10 @@ use Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException as APINotFoundException; /** - * Implementation of the {@link \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException} - * interface. + * REST API equivalent of PHP API's NotFoundException. * - * @see \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException + * Implementation of the {@see \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException} + * interface. */ class NotFoundException extends APINotFoundException {