Passed
Push — master ( d59f88...446c3e )
by Stefano
01:28
created

UserAccessesController::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
/**
3
 * BEdita, API-first content management framework
4
 * Copyright 2023 Atlas Srl, Chialab Srl
5
 *
6
 * This file is part of BEdita: you can redistribute it and/or modify
7
 * it under the terms of the GNU Lesser General Public License as published
8
 * by the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * See LICENSE.LGPL or <http://gnu.org/licenses/lgpl-3.0.html> for more details.
12
 */
13
namespace App\Controller\Admin;
14
15
use Cake\Http\Response;
16
17
/**
18
 * User Accesses Controller
19
 */
20
class UserAccessesController extends AdministrationBaseController
21
{
22
    /**
23
     * @inheritDoc
24
     */
25
    public function index(): ?Response
26
    {
27
        return null;
28
    }
29
}
30