1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
-
-
-
-
-
- class Swift_Events_CommandEvent extends Swift_Events_EventObject
- {
-
-
-
- private $_command;
-
-
-
- private $_successCodes = array();
-
-
-
- public function __construct(Swift_Transport $source,
- $command, $successCodes = array())
- {
- parent::__construct($source);
- $this->_command = $command;
- $this->_successCodes = $successCodes;
- }
-
-
-
- public function getCommand()
- {
- return $this->_command;
- }
-
-
-
- public function getSuccessCodes()
- {
- return $this->_successCodes;
- }
-
- }
|