File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11## FtpConnectionInterface
22
3- ` FtpConnectionInterface ` provides an easy way to manipulate an FTP connection instance, however you can use this too types of connections :
3+ ` FtpConnectionInterface ` provides an easy way to manipulate an FTP connection instance.
4+
5+ You can use the following classes that implement the interface.
46
57 * ` FtpConnection ` : Regular FTP connection (Not secure).
68 * ` FtpSSLConnection ` : FTP over TLS/SSL connection (Secure).
@@ -22,9 +24,9 @@ $connection->getStream();
2224$connection->getHost();
2325$connection->getPort();
2426$connection->getTimeout();
25- $connection->getTimeout();
2627$connection->getUsername();
2728$connection->getPassword();
2829$connection->isSecure();
2930$connection->isConnected();
31+ $connection->isPassive();
3032```
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ This library uses PHPUnit for testing.
44
55### Requirements
66
7- * phpUnit 4.x.x
8- * php >= 5.6
7+ * phpUnit ^4
8+ * php >= 5.3.3
99
1010### Install
1111
You can’t perform that action at this time.
0 commit comments