Skip to content

Commit

Permalink
Correct namespaces for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spaze committed Jan 24, 2025
1 parent 40eca12 commit b388693
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/Bugs/Bug288DocblockTemplateCallableParamTest.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<?php
declare(strict_types = 1);

namespace Spaze\PHPStan\Rules\Disallowed\Calls;
namespace Spaze\PHPStan\Rules\Disallowed\Bugs;

use PHPStan\Reflection\ReflectionProvider;
use PHPStan\Rules\Rule;
use PHPStan\ShouldNotHappenException;
use PHPStan\Testing\RuleTestCase;
use Spaze\PHPStan\Rules\Disallowed\Calls\MethodCalls;
use Spaze\PHPStan\Rules\Disallowed\DisallowedCallFactory;
use Spaze\PHPStan\Rules\Disallowed\RuleErrors\DisallowedCallableParameterRuleErrors;
use Spaze\PHPStan\Rules\Disallowed\RuleErrors\DisallowedFunctionRuleErrors;
Expand Down
3 changes: 1 addition & 2 deletions tests/Normalizer/NormalizerTest.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<?php
declare(strict_types = 1);

namespace Normalizer;
namespace Spaze\PHPStan\Rules\Disallowed\Normalizer;

use PHPStan\Testing\PHPStanTestCase;
use Spaze\PHPStan\Rules\Disallowed\Normalizer\Normalizer;

class NormalizerTest extends PHPStanTestCase
{
Expand Down

0 comments on commit b388693

Please sign in to comment.