Skip to content

Commit bca1707

Browse files
committed
Updated namespace
1 parent d3f2b8a commit bca1707

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

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-
"WyriHaximus\\Pusher\\": "src/"
24+
"ApiClients\\Pusher\\": "src/"
2525
}
2626
},
2727
"autoload-dev": {
2828
"psr-4": {
29-
"WyriHaximus\\Tests\\Pusher\\": "tests/"
29+
"ApiClients\\Tests\\Pusher\\": "tests/"
3030
}
3131
}
3232
}

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/reddit.php

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

33
use React\EventLoop\Factory;
4-
use function Ratchet\Client\connect;
54
use Rx\Observer\CallbackObserver;
6-
use WyriHaximus\Pusher\AsyncClient;
5+
use ApiClients\Pusher\AsyncClient;
76

87
require dirname(__DIR__) . DIRECTORY_SEPARATOR . 'vendor/autoload.php';
98

src/AsyncClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace WyriHaximus\Pusher;
4+
namespace ApiClients\Pusher;
55

66
use React\EventLoop\LoopInterface;
77
use Rx\Disposable\CallbackDisposable;

src/PusherAwareTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace WyriHaximus\Pusher;
4+
namespace ApiClients\Pusher;
55

66
trait PusherAwareTrait
77
{

tests/AsyncClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace WyriHaximus\Tests\Pusher;
4+
namespace ApiClients\Tests\Pusher;
55

66
class AsyncClientTest extends \PHPUnit_Framework_TestCase
77
{

0 commit comments

Comments
 (0)