We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbdb8ca commit 3dd1079Copy full SHA for 3dd1079
tests/Unit/Context/ScopeTest.php
@@ -116,7 +116,7 @@ public function test_scope_local_storage_is_preserved_between_attach_and_scope()
116
$scope['key'] = 'value';
117
$scope = $storage->scope();
118
$this->assertNotNull($scope);
119
- $this->assertArrayHasKey('key', $scope); /** @phpstan-ignore-line */
+ $this->assertArrayHasKey('key', $scope);
120
$this->assertSame('value', $scope['key']);
121
122
unset($scope['key']);
0 commit comments