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

Commit 5e17d39

Browse files
committed
Solve wrong namespaces
1 parent a416d91 commit 5e17d39

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

src/Copyscape.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
namespace Marcosper\Copyscape;
44
use GuzzleHttp\Client;
55
use GuzzleHttp\Exception\GuzzleException;
6-
use MarcosPer\Copyscape\Exceptions\ApiException;
7-
use MarcosPer\Copyscape\Exceptions\InvalidApiException;
8-
use MarcosPer\Copyscape\Exceptions\NoCreditsException;
9-
use MarcosPer\Copyscape\Models\Report;
6+
use Marcosper\Copyscape\Exceptions\ApiException;
7+
use Marcosper\Copyscape\Exceptions\InvalidApiException;
8+
use Marcosper\Copyscape\Exceptions\NoCreditsException;
9+
use Marcosper\Copyscape\Models\Report;
1010
use SimpleXMLElement;
1111

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

3335
/**

0 commit comments

Comments
 (0)