From 27fe23a50fba71263c152f6b4c3727158fcfe969 Mon Sep 17 00:00:00 2001 From: Clivern Date: Tue, 15 Aug 2017 16:00:33 +0200 Subject: [PATCH] readme updated --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9913a65..e799ac4 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,14 @@ After adding the package as a dependency, Please read the following steps: ```php include_once dirname(__FILE__) . '/vendor/autoload.php'; - -$connection = new Clivern\Imap\Core\Connection("imap.gmail.com", "993", "test@clivern.com", "my_password", "/ssl", "INBOX"); +$connection = new Clivern\Imap\Core\Connection( + "imap.gmail.com", + "993", + "test@clivern.com", + "my_password", + "/ssl", + "INBOX" +); $connection->connect(); ```