Skip to content

Commit

Permalink
CLASS DEFINITION TEST DEPENDENCY: Change name of dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Remy Bos <[email protected]>
  • Loading branch information
sjokkateer committed Jun 29, 2022
1 parent 72a1468 commit b31f25e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/Definition/Reflection/ClassDefinitionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Laminas\Di\Definition\ParameterInterface;
use Laminas\Di\Definition\Reflection\ClassDefinition;
use LaminasTest\Di\TestAsset\ClaimTestClass;
use LaminasTest\Di\TestAsset\ClassDefinitionRedundantUaSortTestDependency;
use LaminasTest\Di\TestAsset\Constructor as ConstructorAsset;
use LaminasTest\Di\TestAsset\Hierarchy as HierarchyAsset;
use PHPUnit\Framework\TestCase;
Expand Down Expand Up @@ -137,7 +137,7 @@ public function testGetParametersReturnsAnArray(string $class): void

public function testRedundantUaSortInClassDefinition(): void
{
$reflectionClass = new ReflectionClass(ClaimTestClass::class);
$reflectionClass = new ReflectionClass(ClassDefinitionRedundantUaSortTestDependency::class);
$constructor = $reflectionClass->getConstructor();
$constructorParameters = $constructor->getParameters();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace LaminasTest\Di\TestAsset;

class ClaimTestClass
class ClassDefinitionRedundantUaSortTestDependency
{
/** @param mixed $third */
public function __construct(
Expand Down

0 comments on commit b31f25e

Please sign in to comment.