Skip to content

Commit 0841c37

Browse files
committed
fix docs
1 parent e0c7d61 commit 0841c37

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/FtpConnectionInterface.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
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
```

docs/tests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)