Completed
Push — master ( 201e9c...877b57 )
by Artem
11:08
created

SinchController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A callbackAction() 0 4 1
1
<?php
2
/*
3
 * This file is part of the FreshSinchBundle
4
 *
5
 * (c) Artem Genvald <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Fresh\SinchBundle\Controller;
12
13
use Symfony\Component\HttpFoundation\Request;
14
15
/**
16
 * SinchController.
17
 *
18
 * @author Artem Genvald <[email protected]>
19
 */
20
class SinchController
21
{
22
    /**
23
     * Callback action
24
     *
25
     * @param Request $request Request
26
     */
27
    public function callbackAction(Request $request)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
28
    {
29
        // @todo
30
    }
31
}
32