| Total Complexity | 5 |
| Total Lines | 54 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class InvalidateSessionsResult |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var Error[] |
||
| 9 | */ |
||
| 10 | protected $errors = null; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var boolean |
||
| 14 | */ |
||
| 15 | protected $success = null; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param boolean $success |
||
| 19 | */ |
||
| 20 | public function __construct($success = null) |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return Error[] |
||
| 27 | */ |
||
| 28 | public function getErrors() |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param Error[] $errors |
||
| 35 | * @return \SForce\Wsdl\InvalidateSessionsResult |
||
| 36 | */ |
||
| 37 | public function setErrors(array $errors = null) |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return boolean |
||
| 45 | */ |
||
| 46 | public function getSuccess() |
||
| 47 | { |
||
| 48 | return $this->success; |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param boolean $success |
||
| 53 | * @return \SForce\Wsdl\InvalidateSessionsResult |
||
| 54 | */ |
||
| 55 | public function setSuccess($success) |
||
| 59 | } |
||
| 60 | } |
||
| 61 |