diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-11-17 11:21:36 +0100 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-11-17 11:21:36 +0100 |
commit | 656261727b9354fa9ecb46382888873e6eceb3a3 (patch) | |
tree | fd72588c4db17b6a8bc088543c7dded70b6d4c3a /auth/ssh.php | |
parent | b479270737528e13b874aa3a59a6eafa854fa093 (diff) |
Code format. Always use () for functions.
Diffstat (limited to 'auth/ssh.php')
-rw-r--r-- | auth/ssh.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/auth/ssh.php b/auth/ssh.php index 5fdd489..d8d56a1 100644 --- a/auth/ssh.php +++ b/auth/ssh.php @@ -19,9 +19,9 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -require_once 'Crypt/RSA.php'; -require_once 'Net/SSH2.php'; -require_once 'authentication.php'; +require_once('Crypt/RSA.php'); +require_once('Net/SSH2.php'); +require_once('authentication.php'); final class SSH extends Authentication { private $port; |