Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
ScopeDelete
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
1 / 1
2
1<?php
2
3/**
4 * @package ZMS API
5 * @copyright BerlinOnline Stadtportal GmbH & Co. KG
6 **/
7
8namespace BO\Zmsapi;
9
10use BO\Slim\Render;
11use BO\Zmsdb\Scope;
12
13class ScopeDelete extends BaseController
14{
15    /**
16     * @SuppressWarnings(Param)
17     * @return String
18     */
19    public function readResponse(
20        \Psr\Http\Message\RequestInterface $request,
21        \Psr\Http\Message\ResponseInterface $response,
22        array $args
23    ) {
24        $scope = (new Scope())->readEntity($args['id'], 0);
25        if (! $scope) {
26            throw new Exception\Scope\ScopeNotFound();
27        }(new Helper\User($request, 2))->checkRights(
28            'scope',
29            new \BO\Zmsentities\Useraccount\EntityAccess($scope)
30        );
31        $message = Response\Message::create($request);
32        $message->data = (new Scope())->deleteEntity($scope->id);
33
34        $response = Render::withLastModified($response, time(), '0');
35        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
36        return $response;
37    }
38}