Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
88.89% covered (warning)
88.89%
8 / 9
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
EditQuestionCategoryEndpoint
88.89% covered (warning)
88.89%
8 / 9
0.00% covered (danger)
0.00%
0 / 1
2.01
0.00% covered (danger)
0.00%
0 / 1
 handle
88.89% covered (warning)
88.89%
8 / 9
0.00% covered (danger)
0.00%
0 / 1
2.01
1<?php
2
3namespace Olz\Faq\Endpoints;
4
5use Olz\Api\OlzEditEntityTypedEndpoint;
6use PhpTypeScriptApi\HttpError;
7
8/**
9 * @phpstan-import-type OlzQuestionCategoryId from QuestionCategoryEndpointTrait
10 * @phpstan-import-type OlzQuestionCategoryData from QuestionCategoryEndpointTrait
11 *
12 * @extends OlzEditEntityTypedEndpoint<OlzQuestionCategoryId, OlzQuestionCategoryData>
13 */
14class EditQuestionCategoryEndpoint extends OlzEditEntityTypedEndpoint {
15    use QuestionCategoryEndpointTrait;
16
17    protected function handle(mixed $input): mixed {
18        $this->checkPermission('faq');
19
20        $entity = $this->getEntityById($input['id']);
21
22        if (!$this->entityUtils()->canUpdateOlzEntity($entity, null, 'faq')) {
23            throw new HttpError(403, "Kein Zugriff!");
24        }
25
26        return [
27            'id' => $entity->getId() ?? 0,
28            'meta' => $entity->getMetaData(),
29            'data' => $this->getEntityData($entity),
30        ];
31    }
32}