Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AmraniCh committed Apr 5, 2021
1 parent e0c7d61 commit 0841c37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions docs/FtpConnectionInterface.md
Original file line number Diff line number Diff line change
@@ -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).
Expand All @@ -22,9 +24,9 @@ $connection->getStream();
$connection->getHost();
$connection->getPort();
$connection->getTimeout();
$connection->getTimeout();
$connection->getUsername();
$connection->getPassword();
$connection->isSecure();
$connection->isConnected();
$connection->isPassive();
```
4 changes: 2 additions & 2 deletions docs/tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0841c37

Please sign in to comment.