From 0841c3778fd36494d5094b7f9e3dd1f4d3290a4d Mon Sep 17 00:00:00 2001 From: AmraniCh Date: Mon, 5 Apr 2021 18:03:49 +0100 Subject: [PATCH] fix docs --- docs/FtpConnectionInterface.md | 6 ++++-- docs/tests.md | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/FtpConnectionInterface.md b/docs/FtpConnectionInterface.md index 64455ee..1431f2a 100644 --- a/docs/FtpConnectionInterface.md +++ b/docs/FtpConnectionInterface.md @@ -1,6 +1,8 @@ ## FtpConnectionInterface -`FtpConnectionInterface` provides an easy way to manipulate an FTP connection instance, however you can use this too types of connections : +`FtpConnectionInterface` provides an easy way to manipulate an FTP connection instance. + +You can use the following classes that implement the interface. * `FtpConnection` : Regular FTP connection (Not secure). * `FtpSSLConnection` : FTP over TLS/SSL connection (Secure). @@ -22,9 +24,9 @@ $connection->getStream(); $connection->getHost(); $connection->getPort(); $connection->getTimeout(); -$connection->getTimeout(); $connection->getUsername(); $connection->getPassword(); $connection->isSecure(); $connection->isConnected(); +$connection->isPassive(); ``` diff --git a/docs/tests.md b/docs/tests.md index 08e46ac..cc502a1 100644 --- a/docs/tests.md +++ b/docs/tests.md @@ -4,8 +4,8 @@ This library uses PHPUnit for testing. ### Requirements -* phpUnit 4.x.x -* php >= 5.6 +* phpUnit ^4 +* php >= 5.3.3 ### Install