Skip to content

Commit 3dd1079

Browse files
committed
fixing phpstan complaint
1 parent bbdb8ca commit 3dd1079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Unit/Context/ScopeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public function test_scope_local_storage_is_preserved_between_attach_and_scope()
116116
$scope['key'] = 'value';
117117
$scope = $storage->scope();
118118
$this->assertNotNull($scope);
119-
$this->assertArrayHasKey('key', $scope); /** @phpstan-ignore-line */
119+
$this->assertArrayHasKey('key', $scope);
120120
$this->assertSame('value', $scope['key']);
121121

122122
unset($scope['key']);

0 commit comments

Comments
 (0)