Skip to content

Commit 3d117ad

Browse files
committed
Fixes namespace
1 parent 3760fc9 commit 3d117ad

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Jlinn/Mandrill/Api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
use Guzzle\Http\Client;
1111
use Guzzle\Http\Exception\ServerErrorResponseException;
12-
use Mandrill\Exception\APIException;
12+
use Jlinn\Mandrill\Exception\APIException;
1313

1414
abstract class Api{
1515
const BASE_URL = 'https://mandrillapp.com/api/1.0/';

src/Jlinn/Mandrill/Exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
namespace Jlinn\Mandrill;
99

10-
class Exception extends \Exception{
10+
class Exception extends \Exception {
1111

1212
}

src/Jlinn/Mandrill/Exception/APIException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Jlinn\Mandrill\Exception;
99

10-
use Mandrill\Exception;
10+
use Jlinn\Mandrill\Exception;
1111

1212
class APIException extends Exception{
1313
/**

0 commit comments

Comments
 (0)