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

SinchController::callbackAction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 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