Completed
Push — master ( 5247c6...b8f763 )
by Craig
10:35 queued 03:41
created

UserController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 22
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A indexAction() 0 4 1
1
<?php
2
/**
3
 * Routes.
4
 *
5
 * @copyright Zikula contributors (Zikula)
6
 * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
7
 * @author Zikula contributors <[email protected]>.
8
 * @link http://www.zikula.org
9
 * @link http://zikula.org
10
 * @version Generated by ModuleStudio 0.7.0 (http://modulestudio.de).
11
 */
12
13
namespace Zikula\RoutesModule\Controller;
14
15
use Zikula\RoutesModule\Controller\Base\AbstractUserController;
16
17
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
18
use Symfony\Component\HttpFoundation\Request;
19
use Zikula\ThemeModule\Engine\Annotation\Theme;
20
21
/**
22
 * User controller class providing navigation and interaction functionality.
23
 */
24
class UserController extends AbstractUserController
25
{
26
    /**
27
     * This is the default action handling the index area called without defining arguments.
28
     *
29
     * @Route("/user",
30
     *        methods = {"GET"}
31
     * )
32
     *
33
     * @param Request  $request      Current request instance
34
     *
35
     * @return mixed Output
36
     *
37
     * @throws AccessDeniedException Thrown if the user doesn't have required permissions
38
     */
39
    public function indexAction(Request $request)
40
    {
41
        return parent::indexAction($request);
42
    }
43
44
    // feel free to add your own controller methods here
45
}
46