Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Added another way to connect to server using SSH #34

Merged
merged 2 commits into from
Jul 9, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ server(...)
->password('pass')
~~~

### With a username and a typed password

~~~ php
server(...)
->user('name')
->password(null)
~~~

Set password to *null* and it will be asked.

### With an identity file

~~~ php
Expand Down