Skip to content
This repository has been archived by the owner on Jan 4, 2022. It is now read-only.

Commit

Permalink
Merge pull request #436 from ergebnis/fix/import
Browse files Browse the repository at this point in the history
Fix: Imports
  • Loading branch information
localheinz committed Mar 30, 2021
2 parents 7c85925 + e45e86e commit 4c69f9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ declare(strict_types=1);

namespace Foo\Bar\Test\Unit;

use Ergebnis\Test\Util\Helper;
use Ergebnis\Test\Util;
use PHPUnit\Framework;

final class BazTest extends Framework\TestCase
{
use Helper;
use Util\Helper;
}
```

Expand All @@ -56,13 +56,13 @@ declare(strict_types=1);

namespace Example\Test\Unit;

use Ergebnis\Test\Util\Helper;
use Ergebnis\Test\Util;
use Example\Player;
use PHPUnit\Framework;

final class PlayerTest extends Framework\TestCase
{
use Helper;
use Util\Helper;

public function testConstructorSetsValues(): void
{
Expand Down

0 comments on commit 4c69f9b

Please sign in to comment.