| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 35 | public function toArray(){ |
||
| 36 | $result = array(); |
||
| 37 | $result['id'] = $this->getId(); |
||
| 38 | $result['enabled'] = $this->isEnabled(); |
||
| 39 | $result['displayname'] = $this->getDisplayName(); |
||
| 40 | $result['protocols'] = $this->getProtocols(); |
||
| 41 | $result['config'] = $this->getConfig(); |
||
| 42 | $result['connected'] = false; |
||
| 43 | return $result; |
||
| 44 | } |
||
| 45 | |||
| 61 | } |