12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
-
-
-
-
-
- class Swift_Events_ResponseEvent extends Swift_Events_EventObject
- {
-
-
-
- private $_valid;
-
-
-
- private $_response;
-
-
-
- public function __construct(Swift_Transport $source, $response, $valid = false)
- {
- parent::__construct($source);
- $this->_response = $response;
- $this->_valid = $valid;
- }
-
-
-
- public function getResponse()
- {
- return $this->_response;
- }
-
-
-
- public function isValid()
- {
- return $this->_valid;
- }
-
- }
|