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\CreatingSubAccountInterface; |
15
|
|
|
use WBW\Library\SMSMode\Model\CreatingSubAccountRequest; |
16
|
|
|
use WBW\Library\SMSMode\Model\CreatingSubAccountResponse; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Creating sub-account event |
20
|
|
|
* |
21
|
|
|
* @author webeweb <https://github.com/webeweb/> |
22
|
|
|
* @package WBW\Bundle\SMSModeBundle\Event |
23
|
|
|
*/ |
24
|
|
|
class CreatingSubAccountEvent extends AbstractSMSModeEvent { |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Constructor. |
28
|
|
|
* |
29
|
|
|
* @param CreatingSubAccountInterface $creatingSubAccount The creating sub-account. |
30
|
|
|
*/ |
31
|
|
|
public function __construct(CreatingSubAccountInterface $creatingSubAccount) { |
32
|
|
|
parent::__construct(SMSModeEvents::CREATING_SUB_ACCOUNT, $creatingSubAccount); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* Get the creating sub-account. |
37
|
|
|
* |
38
|
|
|
* @return CreatingSubAccountInterface Returns the creating sub-account. |
39
|
|
|
*/ |
40
|
|
|
public function getCreatingSubAccount() { |
41
|
|
|
return parent::getEntity(); |
|
|
|
|
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* Get the creating sub-account request. |
46
|
|
|
* |
47
|
|
|
* @return CreatingSubAccountRequest Returns the creating sub-account request. |
48
|
|
|
*/ |
49
|
|
|
public function getRequest() { |
50
|
|
|
return parent::getRequest(); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* Get the creating sub-account response. |
55
|
|
|
* |
56
|
|
|
* @return CreatingSubAccountResponse Returns the creating sub-account response. |
57
|
|
|
*/ |
58
|
|
|
public function getResponse() { |
59
|
|
|
return parent::getResponse(); |
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.