Skip to content

Commit fe46397

Browse files
author
Wazabii
committed
Name changes
1 parent 5020edf commit fe46397

36 files changed

+276
-96
lines changed

Client.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
declare(strict_types=1);
44

5-
namespace PHPFuse\Http;
5+
namespace MaplePHP\Http;
66

7-
use PHPFuse\Http\Interfaces\RequestInterface;
8-
use PHPFuse\Http\Interfaces\ResponseInterface;
9-
use PHPFuse\Http\Interfaces\ClientInterface;
10-
use PHPFuse\Http\Interfaces\StreamInterface;
11-
use PHPFuse\Http\Exceptions\ClientException;
12-
use PHPFuse\Http\Exceptions\RequestException;
13-
use PHPFuse\Http\Exceptions\NetworkException;
7+
use MaplePHP\Http\Interfaces\RequestInterface;
8+
use MaplePHP\Http\Interfaces\ResponseInterface;
9+
use MaplePHP\Http\Interfaces\ClientInterface;
10+
use MaplePHP\Http\Interfaces\StreamInterface;
11+
use MaplePHP\Http\Exceptions\ClientException;
12+
use MaplePHP\Http\Exceptions\RequestException;
13+
use MaplePHP\Http\Exceptions\NetworkException;
1414
use InvalidArgumentException;
1515

1616
class Client implements ClientInterface

Cookies.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
declare(strict_types=1);
44

5-
namespace PHPFuse\Http;
5+
namespace MaplePHP\Http;
66

7-
use PHPFuse\Http\Interfaces\CookiesInterface;
7+
use MaplePHP\Http\Interfaces\CookiesInterface;
88

99
class Cookies implements CookiesInterface
1010
{

Dir.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
declare(strict_types=1);
44

5-
namespace PHPFuse\Http;
5+
namespace MaplePHP\Http;
66

7-
use PHPFuse\Http\Interfaces\DirInterface;
7+
use MaplePHP\Http\Interfaces\DirInterface;
88

99
class Dir implements DirInterface
1010
{

Env.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types=1);
44

5-
namespace PHPFuse\Http;
5+
namespace MaplePHP\Http;
66

77
use InvalidArgumentException;
8-
use PHPFuse\DTO\Format;
8+
use MaplePHP\DTO\Format;
99

1010
class Env
1111
{

Environment.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace PHPFuse\Http;
3+
namespace MaplePHP\Http;
44

5-
use PHPFuse\Http\Interfaces\EnvironmentInterface;
6-
use PHPFuse\DTO\Format;
5+
use MaplePHP\Http\Interfaces\EnvironmentInterface;
6+
use MaplePHP\DTO\Format;
77

88
class Environment implements EnvironmentInterface
99
{

Exceptions/ClientException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace PHPFuse\Http\Exceptions;
3+
namespace MaplePHP\Http\Exceptions;
44

5-
use PHPFuse\Http\Interfaces\ClientExceptionInterface;
5+
use MaplePHP\Http\Interfaces\ClientExceptionInterface;
66
use Exception;
77

88
/**

Exceptions/NetworkException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHPFuse\Http\Exceptions;
3+
namespace MaplePHP\Http\Exceptions;
44

55
/**
66
* Every HTTP client related exception MUST implement this interface.

Exceptions/RequestException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHPFuse\Http\Exceptions;
3+
namespace MaplePHP\Http\Exceptions;
44

55
/**
66
* Every HTTP client related exception MUST implement this interface.

Headers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace PHPFuse\Http;
3+
namespace MaplePHP\Http;
44

5-
use PHPFuse\Http\Interfaces\HeadersInterface;
5+
use MaplePHP\Http\Interfaces\HeadersInterface;
66

77
class Headers implements HeadersInterface
88
{

Interfaces/ClientExceptionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHPFuse\Http\Interfaces;
3+
namespace MaplePHP\Http\Interfaces;
44

55
/**
66
* Every HTTP client related exception MUST implement this interface.

0 commit comments

Comments
 (0)