| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function jsonSerialize() |
||
| 23 | { |
||
| 24 | return [ |
||
| 25 | 'urlSegment' => $this->method->getURLSegment(), |
||
| 26 | 'name' => $this->method->getRegisterHandler()->getName(), |
||
| 27 | 'description' => $this->method->getRegisterHandler()->getDescription(), |
||
| 28 | 'supportLink' => $this->method->getRegisterHandler()->getSupportLink(), |
||
| 29 | 'thumbnail' => $this->method->getThumbnail(), |
||
| 30 | 'component' => $this->method->getRegisterHandler()->getComponent(), |
||
| 31 | 'isAvailable' => $this->method->isAvailable(), |
||
| 32 | 'unavailableMessage' => $this->method->getUnavailableMessage(), |
||
| 33 | ]; |
||
| 36 |