TestController::newDeliveryReportCallback()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of the smsmode-bundle package.
5
 *
6
 * (c) 2019 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Bundle\SmsModeBundle\Tests\Fixtures\Controller;
13
14
use Symfony\Component\HttpFoundation\Request;
15
use WBW\Bundle\SmsModeBundle\Controller\AbstractController;
16
use WBW\Library\SmsMode\Model\DeliveryReportCallback;
17
use WBW\Library\SmsMode\Model\SmsReplyCallback;
18
19
/**
20
 * Test controller.
21
 *
22
 * @author webeweb <https://github.com/webeweb>
23
 * @package WBW\Bundle\SmsModeBundle\Tests\Fixtures\Controller
24
 */
25
class TestController extends AbstractController {
26
27
    /**
28
     * {@inheritDoc}
29
     */
30
    public function newDeliveryReportCallback(Request $request): DeliveryReportCallback {
31
        return parent::newDeliveryReportCallback($request);
32
    }
33
34
    /**
35
     * {@inheritDoc}
36
     */
37
    public function newSmsReplyCallback(Request $request): SmsReplyCallback {
38
        return parent::newSmsReplyCallback($request);
39
    }
40
}
41