Skip to content

Commit

Permalink
Renamespaced
Browse files Browse the repository at this point in the history
  • Loading branch information
jawngee committed Dec 10, 2018
1 parent d42e3e1 commit 05bca31
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"autoload-dev": {
"psr-4": {
"ChrisWhite\\B2\\Tests\\": "tests/"
"ILAB\\B2\\Tests\\": "tests/"
}
}
}
2 changes: 1 addition & 1 deletion src/Bucket.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2;
namespace ILAB\B2;

class Bucket
{
Expand Down
8 changes: 4 additions & 4 deletions src/Client.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace ChrisWhite\B2;
namespace ILAB\B2;

use ChrisWhite\B2\Exceptions\NotFoundException;
use ChrisWhite\B2\Exceptions\ValidationException;
use ChrisWhite\B2\Http\Client as HttpClient;
use ILAB\B2\Exceptions\NotFoundException;
use ILAB\B2\Exceptions\ValidationException;
use ILAB\B2\Http\Client as HttpClient;

class Client
{
Expand Down
16 changes: 8 additions & 8 deletions src/ErrorHandler.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

namespace ChrisWhite\B2;
namespace ILAB\B2;

use ChrisWhite\B2\Exceptions\B2Exception;
use ChrisWhite\B2\Exceptions\BadJsonException;
use ChrisWhite\B2\Exceptions\BadValueException;
use ChrisWhite\B2\Exceptions\BucketAlreadyExistsException;
use ChrisWhite\B2\Exceptions\NotFoundException;
use ChrisWhite\B2\Exceptions\FileNotPresentException;
use ChrisWhite\B2\Exceptions\BucketNotEmptyException;
use ILAB\B2\Exceptions\B2Exception;
use ILAB\B2\Exceptions\BadJsonException;
use ILAB\B2\Exceptions\BadValueException;
use ILAB\B2\Exceptions\BucketAlreadyExistsException;
use ILAB\B2\Exceptions\NotFoundException;
use ILAB\B2\Exceptions\FileNotPresentException;
use ILAB\B2\Exceptions\BucketNotEmptyException;
use GuzzleHttp\Psr7\Response;

class ErrorHandler
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/B2Exception.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2\Exceptions;
namespace ILAB\B2\Exceptions;

class B2Exception extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/BadJsonException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2\Exceptions;
namespace ILAB\B2\Exceptions;

class BadJsonException extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/BadValueException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2\Exceptions;
namespace ILAB\B2\Exceptions;

class BadValueException extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/BucketAlreadyExistsException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2\Exceptions;
namespace ILAB\B2\Exceptions;

class BucketAlreadyExistsException extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/BucketNotEmptyException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2\Exceptions;
namespace ILAB\B2\Exceptions;

class BucketNotEmptyException extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/FileNotPresentException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2\Exceptions;
namespace ILAB\B2\Exceptions;

class FileNotPresentException extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/NotFoundException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2\Exceptions;
namespace ILAB\B2\Exceptions;

class NotFoundException extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/ValidationException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2\Exceptions;
namespace ILAB\B2\Exceptions;

class ValidationException extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/File.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace ChrisWhite\B2;
namespace ILAB\B2;

class File
{
Expand Down
6 changes: 3 additions & 3 deletions src/Http/Client.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

namespace ChrisWhite\B2\Http;
namespace ILAB\B2\Http;

use ChrisWhite\B2\ErrorHandler;
use ILAB\B2\ErrorHandler;
use GuzzleHttp\Client as GuzzleClient;

/**
* Client wrapper around Guzzle.
*
* @package ChrisWhite\B2\Http
* @package ILAB\B2\Http
*/
class Client extends GuzzleClient
{
Expand Down

0 comments on commit 05bca31

Please sign in to comment.