Skip to content

Commit 0e8f56e

Browse files
Merge pull request #3 from tanelt/master
Namespace updates
2 parents ef48e62 + 4b0b24d commit 0e8f56e

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
},
2222
"autoload": {
2323
"psr-4": {
24-
"PDFGeneratorAPI\\": "src/"
24+
"ActualReports\\PDFGeneratorAPI\\": "src/"
2525
}
2626
},
2727
"autoload-dev": {
2828
"psr-4": {
29-
"PDFGeneratorAPI\\Tests\\": "tests/"
29+
"ActualReports\\PDFGeneratorAPI\\Tests\\": "tests/"
3030
}
3131
}
3232
}

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Created by tanel @14.11.17 11:13
44
*/
55

6-
namespace PDFGeneratorAPI;
6+
namespace ActualReports\PDFGeneratorAPI;
77

88
use GuzzleHttp\Exception\RequestException;
99
use Psr\Http\Message\ResponseInterface;

src/Exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Created by tanel @14.11.17 11:45
44
*/
55

6-
namespace PDFGeneratorAPI;
6+
namespace ActualReports\PDFGeneratorAPI;
77

88
class Exception extends \Exception
99
{

tests/Client.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
* Created by tanel @14.11.17 11:23
44
*/
55

6-
namespace PDFGeneratorAPI\Tests;
6+
namespace ActualReports\PDFGeneratorAPI\Tests;
77

8-
use PDFGeneratorAPI\Exception;
8+
use ActualReports\PDFGeneratorAPI\Exception;
99

1010
class Client extends \PHPUnit_Framework_TestCase
1111
{
1212
/**
13-
* @var \PDFGeneratorAPI\Client
13+
* @var \ActualReports\PDFGeneratorAPI\Client
1414
*/
1515
protected $client;
1616
protected $token = '61e5f04ca1794253ed17e6bb986c1702';
@@ -23,7 +23,7 @@ public function setUp()
2323
{
2424
parent::setUp();
2525

26-
$this->client = new \PDFGeneratorAPI\Client($this->token, $this->secret, $this->workspace);
26+
$this->client = new \ActualReports\PDFGeneratorAPI\Client($this->token, $this->secret, $this->workspace);
2727
$this->client->setBaseUrl($this->host.'/api/v3');
2828
}
2929

0 commit comments

Comments
 (0)