| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function __construct(object $sshkey) |
||
| 29 | { |
||
| 30 | $this->uuid = $sshkey->uuid; |
||
| 31 | $this->label = $sshkey->label; |
||
| 32 | $this->public_key = $sshkey->public_key; |
||
| 33 | $this->fingerprint = $sshkey->fingerprint; |
||
| 34 | $this->created_at = $sshkey->created_at; |
||
| 35 | $this->links = $sshkey->_links; |
||
| 36 | } |
||
| 38 |