| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class CustomConfiguration extends AbstractConfiguration |
||
| 10 | { |
||
| 11 | // this proxy method is needed because the autocompletion breaks |
||
| 12 | // if the parent method is used directly |
||
| 13 | public function server(string $sshDsn, array $roles = [Server::ROLE_APP], array $properties = []) : self |
||
| 14 | { |
||
| 15 | parent::server($sshDsn, $roles, $properties); |
||
| 16 | |||
| 17 | return $this; |
||
| 18 | } |
||
| 19 | |||
| 20 | // this proxy method is needed because the autocompletion breaks |
||
| 21 | // if the parent method is used directly |
||
| 22 | public function useSshAgentForwarding(bool $useIt) : self |
||
| 23 | { |
||
| 24 | parent::useSshAgentForwarding($useIt); |
||
| 25 | |||
| 26 | return $this; |
||
| 27 | } |
||
| 28 | |||
| 29 | protected function getReservedServerProperties() : array |
||
| 32 | } |
||
| 33 | } |
||
| 34 |