Skip to content
This repository was archived by the owner on Apr 9, 2024. It is now read-only.

Commit a441c00

Browse files
committed
changed namespace
1 parent a29c0d7 commit a441c00

25 files changed

+132
-129
lines changed

src/Components/Endpoints/CosmeticsEndpoint.php

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

3-
namespace MichelPi\FortniteApi\Components\Endpoints;
4-
5-
use MichelPi\FortniteApi\Components\HttpClient;
6-
use MichelPi\FortniteApi\Components\Objects\Cosmetic;
7-
use MichelPi\FortniteApi\Components\Tasks\CosmeticArrayTask;
8-
use MichelPi\FortniteApi\Components\Tasks\CosmeticTask;
9-
use MichelPi\FortniteApi\FortniteApi;
10-
use MichelPi\FortniteApi\FortniteApiError;
3+
namespace FortniteApi\Components\Endpoints;
4+
5+
use FortniteApi\Components\HttpClient;
6+
use FortniteApi\Components\Objects\Cosmetic;
7+
use FortniteApi\Components\Tasks\CosmeticArrayTask;
8+
use FortniteApi\Components\Tasks\CosmeticTask;
9+
use FortniteApi\FortniteApi;
10+
use FortniteApi\FortniteApiError;
1111

1212
/**
1313
* Provides access to the /cosmetics/ endpoint

src/Components/Endpoints/NewsEndpoint.php

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

3-
namespace MichelPi\FortniteApi\Components\Endpoints;
3+
namespace FortniteApi\Components\Endpoints;
44

5-
use MichelPi\FortniteApi\Components\HttpClient;
6-
use MichelPi\FortniteApi\Components\Tasks\NewsEntryTask;
7-
use MichelPi\FortniteApi\Components\Tasks\NewsTask;
8-
use MichelPi\FortniteApi\FortniteApi;
9-
use MichelPi\FortniteApi\FortniteApiError;
5+
use FortniteApi\Components\HttpClient;
6+
use FortniteApi\Components\Tasks\NewsEntryTask;
7+
use FortniteApi\Components\Tasks\NewsTask;
8+
use FortniteApi\FortniteApi;
9+
use FortniteApi\FortniteApiError;
1010

1111
/**
1212
* Provides access to the /news/ endpoint.

src/Components/Endpoints/ShopEndpoint.php

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

3-
namespace MichelPi\FortniteApi\Components\Endpoints;
3+
namespace FortniteApi\Components\Endpoints;
44

5-
use MichelPi\FortniteApi\Components\HttpClient;
6-
use MichelPi\FortniteApi\Components\Tasks\ShopTask;
7-
use MichelPi\FortniteApi\FortniteApi;
8-
use MichelPi\FortniteApi\FortniteApiError;
5+
use FortniteApi\Components\HttpClient;
6+
use FortniteApi\Components\Tasks\ShopTask;
7+
use FortniteApi\FortniteApi;
8+
use FortniteApi\FortniteApiError;
99

1010
/**
1111
* Provides access to the /shop/ endpoint.

src/Components/HttpClient.php

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

3-
namespace MichelPi\FortniteApi\Components;
3+
namespace FortniteApi\Components;
44

55
use GuzzleHttp\Client;
6-
use MichelPi\FortniteApi\Config\Config;
6+
use FortniteApi\Config\Config;
77

88
class HttpClient
99
{

src/Components/JsonSerializer.php

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

3-
namespace MichelPi\FortniteApi\Components;
3+
namespace FortniteApi\Components;
44

55
class JsonSerializer
66
{

src/Components/Objects/Cosmetic.php

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

3-
namespace MichelPi\FortniteApi\Components\Objects;
3+
namespace FortniteApi\Components\Objects;
44

55
use Exception;
6-
use MichelPi\FortniteApi\Components\Objects\Reflection\Activator;
6+
use FortniteApi\Components\Objects\Reflection\Activator;
77

88
class Cosmetic
99
{

src/Components/Objects/Image.php

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

3-
namespace MichelPi\FortniteApi\Components\Objects;
3+
namespace FortniteApi\Components\Objects;
44

55
use Exception;
6-
use MichelPi\FortniteApi\Components\Objects\Reflection\Activator;
6+
use FortniteApi\Components\Objects\Reflection\Activator;
77

88
class Image
99
{

src/Components/Objects/News.php

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

3-
namespace MichelPi\FortniteApi\Components\Objects;
3+
namespace FortniteApi\Components\Objects;
44

55
use Exception;
6-
use MichelPi\FortniteApi\Components\Objects\Reflection\Activator;
6+
use FortniteApi\Components\Objects\Reflection\Activator;
77

88
class News
99
{

src/Components/Objects/NewsEntry.php

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

3-
namespace MichelPi\FortniteApi\Components\Objects;
3+
namespace FortniteApi\Components\Objects;
44

55
use Exception;
6-
use MichelPi\FortniteApi\Components\Objects\Reflection\Activator;
6+
use FortniteApi\Components\Objects\Reflection\Activator;
77

88
class NewsEntry
99
{

src/Components/Objects/NewsMessage.php

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

3-
namespace MichelPi\FortniteApi\Components\Objects;
3+
namespace FortniteApi\Components\Objects;
44

55
use Exception;
6-
use MichelPi\FortniteApi\Components\Objects\Reflection\Activator;
6+
use FortniteApi\Components\Objects\Reflection\Activator;
77

88
class NewsMessage
99
{

0 commit comments

Comments
 (0)