Skip to content

Commit a4e5f6b

Browse files
committed
Fix namespaces
1 parent 35b198e commit a4e5f6b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
},
2626
"autoload": {
2727
"psr-4": {
28-
"Descom\\NotificationManager\\": "src"
28+
"DescomLib\\": "src"
2929
}
3030
},
3131
"autoload-dev": {
3232
"psr-4": {
33-
"Descom\\NotificationManager\\Tests\\": "tests"
33+
"DescomLib\\Tests\\": "tests"
3434
}
3535
},
3636
"scripts": {

tests/ExampleTest.php

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

3-
namespace Tests;
3+
namespace DescomLib\Tests;
44

55
use PHPUnit\Framework\TestCase;
66

tests/Services/NotificationManager/NotificationManagerTest.php

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

3-
namespace Tests\Services\NotificationManager;
3+
namespace DescomLib\Tests\Services\NotificationManager;
44

5-
use Tests\TestCase;
65
use GuzzleHttp\Client;
76
use GuzzleHttp\HandlerStack;
7+
use DescomLib\Tests\TestCase;
88
use GuzzleHttp\Psr7\Response;
99
use GuzzleHttp\Handler\MockHandler;
1010
use DescomLib\Exceptions\PermanentException;

tests/TestCase.php

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

3-
namespace Tests;
3+
namespace DescomLib\Tests;
44

55
use DescomLib\DescomLibServiceProvider;
66
use Orchestra\Testbench\TestCase as Orchestra;

0 commit comments

Comments
 (0)