Completed
Pull Request — master (#2)
by Eugene
02:20
created

SecurityController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 13
c 0
b 0
f 0
ccs 0
cts 3
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A loginAction() 0 4 1
1
<?php
2
3
namespace Azine\EmailUpdateConfirmationBundle\Controller;
4
5
use FOS\UserBundle\Controller\SecurityController as BaseSecurityController;
6
use Symfony\Component\HttpFoundation\RedirectResponse;
7
use Symfony\Component\HttpFoundation\Request;
8
9
/**
10
 * Controller managing the confirmation of updated user email.
11
 */
12
class SecurityController extends BaseSecurityController
13
{
14
    /**
15
     * If a user is logged in already, then forward to the dashboard instead of showing the login-page.
16
     * (non-PHPdoc).
17
     *
18
     * @see FOS\UserBundle\Controller.SecurityController::loginAction()
19
     */
20
    public function loginAction(Request $request)
21
    {
22
23
    }
24
}