Skip to content

Commit

Permalink
README updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
gre-dev committed Feb 28, 2023
1 parent 9fec60c commit 0bab2e6
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ Here's how you use the API Methods:
include_once './vendor/autoload.php';

// Declaring the classes we need
$Config = new Greip\Config();
$GeoIP = new Greip\GeoIP();
$Config = new Greip\API\Config();
$GeoIP = new Greip\API\GeoIP();

// Setting the API Key
$Config->setKey('<API-Key>');
Expand All @@ -66,8 +66,8 @@ print_r($GeoIP_Response);
include_once './vendor/autoload.php';

// Declaring the classes we need
$Config = new Greip\Config();
$GeoIP = new Greip\GeoIP();
$Config = new Greip\API\Config();
$GeoIP = new Greip\API\GeoIP();

// Setting the API Key
$Config->setKey('<API-Key>');
Expand All @@ -84,8 +84,8 @@ print_r($ASN_Response);
include_once './vendor/autoload.php';

// Declaring the classes we need
$Config = new Greip\Config();
$GeoIP = new Greip\GeoIP();
$Config = new Greip\API\Config();
$GeoIP = new Greip\API\GeoIP();

// Setting the API Key
$Config->setKey('<API-Key>');
Expand All @@ -102,8 +102,8 @@ print_r($Country_Response);
include_once './vendor/autoload.php';

// Declaring the classes we need
$Config = new Greip\Config();
$Fraud = new Greip\Fraud();
$Config = new Greip\API\Config();
$Fraud = new Greip\API\Fraud();

// Setting the API Key
$Config->setKey('<API-Key>');
Expand All @@ -120,8 +120,8 @@ print_r($Email_Response);
include_once './vendor/autoload.php';

// Declaring the classes we need
$Config = new Greip\Config();
$Fraud = new Greip\Fraud();
$Config = new Greip\API\Config();
$Fraud = new Greip\API\Fraud();

// Setting the API Key
$Config->setKey('<API-Key>');
Expand All @@ -138,8 +138,8 @@ print_r($Phone_Response);
include_once './vendor/autoload.php';

// Declaring the classes we need
$Config = new Greip\Config();
$Fraud = new Greip\Fraud();
$Config = new Greip\API\Config();
$Fraud = new Greip\API\Fraud();

// Setting the API Key
$Config->setKey('<API-Key>');
Expand All @@ -156,8 +156,8 @@ print_r($Profanity_Response);
include_once './vendor/autoload.php';

// Declaring the classes we need
$Config = new Greip\Config();
$Fraud = new Greip\Fraud();
$Config = new Greip\API\Config();
$Fraud = new Greip\API\Fraud();

// Setting the API Key
$Config->setKey('<API-Key>');
Expand Down

0 comments on commit 0bab2e6

Please sign in to comment.