Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ protected function setUp(): void
$this->classReflection = $reflectionProvider->getClass(DataObjectHelper::class);

$this->extension = new DataObjectMagicMethodReflectionExtension();

parent::setUp();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ protected function setUp(): void
$reflectionProvider = $this->getContainer()->getService('reflectionProvider');
$this->classReflection = $reflectionProvider->getClass(SessionManagerHelper::class);
$this->extension = new SessionManagerMagicMethodReflectionExtension();

parent::setUp();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ class ControllerResultFactoryReturnTypeExtensionUnitTest extends PHPStanTestCase
protected function setUp(): void
{
$this->extension = new ControllerResultFactoryReturnTypeExtension();

parent::setUp();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ class ObjectManagerDynamicReturnTypeExtensionUnitTest extends PHPStanTestCase
protected function setUp(): void
{
$this->extension = new ObjectManagerDynamicReturnTypeExtension();

parent::setup();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ class TestFrameworkObjectManagerDynamicReturnTypeExtensionUnitTest extends PHPSt
protected function setUp(): void
{
$this->extension = new TestFrameworkObjectManagerDynamicReturnTypeExtension();

parent::setUp();
}

/**
Expand Down
Loading