From 141a9fe4a42b0323ef267ed6d198d074160fae7d Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Thu, 8 Dec 2022 13:08:38 -0800 Subject: [PATCH] php: lint docs --- lib/Controller/PeopleController.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/Controller/PeopleController.php b/lib/Controller/PeopleController.php index 12cbcd6e..31dd337d 100644 --- a/lib/Controller/PeopleController.php +++ b/lib/Controller/PeopleController.php @@ -189,16 +189,15 @@ class PeopleController extends ApiBase /** * Get face preview image cropped with imagick. * - * @param array $detections Array of detections to search - * @param \OCP\IUser $user User to search for - * @param int $padding Padding to add to the face in preview + * @param array $detections Array of detections to search + * @param \OCP\IUser $user User to search for + * @param int $padding Padding to add to the face in preview */ private function getPreviewResponse( array $detections, \OCP\IUser $user, float $padding - ): Http\Response - { + ): Http\Response { // Get preview manager $previewManager = \OC::$server->get(\OCP\IPreview::class);