Skip to content

Commit 53ce192

Browse files
authored
Merge pull request #91 from localheinz/fix/namespace
Fix: Namespace
2 parents e4114fd + e6a0fdf commit 53ce192

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
"autoload-dev": {
4747
"psr-4": {
48-
"Tests\\": "tests/"
48+
"JanGregor\\Prophecy\\Test\\": "tests/"
4949
}
5050
},
5151
"scripts": {

tests/Model/BaseModel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Tests\Model;
3+
namespace JanGregor\Prophecy\Test\Model;
44

55
class BaseModel
66
{

tests/Test/BaseModelTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?php
22

3-
namespace Tests\Test;
3+
namespace JanGregor\Prophecy\Test\Test;
44

5+
use JanGregor\Prophecy\Test\Model\BaseModel;
56
use PHPUnit\Framework\TestCase;
67
use Prophecy\Argument;
78
use Prophecy\Prophecy\ObjectProphecy;
8-
use Tests\Model\BaseModel;
99

1010
/**
1111
* @internal
1212
*
13-
* @covers \Tests\Model\BaseModel
13+
* @covers \JanGregor\Prophecy\Test\Model\BaseModel
1414
*/
1515
final class BaseModelTest extends TestCase
1616
{

0 commit comments

Comments
 (0)