Skip to content
This repository has been archived by the owner on Mar 30, 2020. It is now read-only.

Commit

Permalink
Solve wrong namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcosPer committed Feb 27, 2019
1 parent a416d91 commit 5e17d39
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/Copyscape.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
namespace Marcosper\Copyscape;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
use MarcosPer\Copyscape\Exceptions\ApiException;
use MarcosPer\Copyscape\Exceptions\InvalidApiException;
use MarcosPer\Copyscape\Exceptions\NoCreditsException;
use MarcosPer\Copyscape\Models\Report;
use Marcosper\Copyscape\Exceptions\ApiException;
use Marcosper\Copyscape\Exceptions\InvalidApiException;
use Marcosper\Copyscape\Exceptions\NoCreditsException;
use Marcosper\Copyscape\Models\Report;
use SimpleXMLElement;

/**
Expand All @@ -28,6 +28,8 @@ public function __construct(){
$this->encode = 'UTF-8';
$this->client = new Client(['verify' => false, 'base_uri' => 'http://www.copyscape.com/api/']);
$this->ignoredDomains = array();
$this->user = "";
$this->key = "";
}

/**
Expand Down

0 comments on commit 5e17d39

Please sign in to comment.