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\Event; |
13
|
|
|
|
14
|
|
|
use WBW\Bundle\SMSModeBundle\Entity\SendingSMSBatchInterface; |
15
|
|
|
use WBW\Library\SMSMode\Model\SendingSMSBatchRequest; |
16
|
|
|
use WBW\Library\SMSMode\Model\SendingSMSBatchResponse; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Sending SMS batch event |
20
|
|
|
* |
21
|
|
|
* @author webeweb <https://github.com/webeweb/> |
22
|
|
|
* @package WBW\Bundle\SMSModeBundle\Event |
23
|
|
|
*/ |
24
|
|
|
class SendingSMSBatchEvent extends AbstractSMSModeEvent { |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Constructor. |
28
|
|
|
* |
29
|
|
|
* @param SendingSMSBatchInterface $sendingSMSBatch The sending SMS batch. |
30
|
|
|
*/ |
31
|
|
|
public function __construct(SendingSMSBatchInterface $sendingSMSBatch) { |
32
|
|
|
parent::__construct(SMSModeEvents::SENDING_SMS_BATCH, $sendingSMSBatch); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* Get the sending SMS batch request. |
37
|
|
|
* |
38
|
|
|
* @return SendingSMSBatchRequest Returns the sending SMS batch request. |
39
|
|
|
*/ |
40
|
|
|
public function getRequest() { |
41
|
|
|
return parent::getRequest(); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* Get the sending SMS batch response. |
46
|
|
|
* |
47
|
|
|
* @return SendingSMSBatchResponse Returns the sending SMS batch response. |
48
|
|
|
*/ |
49
|
|
|
public function getResponse() { |
50
|
|
|
return parent::getResponse(); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* Get the sending SMS batch. |
55
|
|
|
* |
56
|
|
|
* @return SendingSMSBatchInterface Returns the sending SMS batch. |
57
|
|
|
*/ |
58
|
|
|
public function getSendingSMSBatch() { |
59
|
|
|
return parent::getEntity(); |
|
|
|
|
60
|
|
|
} |
61
|
|
|
} |
62
|
|
|
|
This check looks for a call to a parent method whose name is different than the method from which it is called.
Consider the following code:
The
getFirstName()
method in theSon
calls the wrong method in the parent class.