1 | <?php |
||
14 | 1 | class SMSenderExtension extends CompilerExtension |
|
15 | { |
||
16 | /** @var array */ |
||
17 | public $defaults = [ |
||
18 | 'config' => [], |
||
19 | 'senderClass' => 'RM\SMSender\EuroSms\Sender', |
||
20 | 'setDebugMode' => FALSE, |
||
21 | 'messageClass' => 'RM\SMSender\EuroSms\Message', |
||
22 | 'messageFactoryClass' => 'RM\SMSender\MessageFactory', |
||
23 | 'message' => [ |
||
24 | 'setFrom' => NULL, |
||
25 | 'signature' => NULL, |
||
26 | ], |
||
27 | ]; |
||
28 | |||
29 | public function beforeCompile() |
||
54 | |||
55 | /** |
||
56 | * Register extension to DI Container. |
||
57 | * @param Configurator $config |
||
58 | */ |
||
59 | public static function register(Configurator $config) |
||
65 | } |
||
66 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.