Skip to content

Commit b7e17a8

Browse files
committed
chore: replace internal method for Context creation
1 parent 5372d23 commit b7e17a8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

phpstan.neon

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ parameters:
4040
- identifier: property.internalClass
4141
- identifier: property.internalInterface
4242
- identifier: return.internalClass
43-
- identifier: staticMethod.internal
4443

4544
services:
4645
- # register the class, so we can decorate it, but don't tag it as a rule, so only our decorator is used by PHPStan

tests/Functional/DataAbstractionLayer/AbstractEntityWriteSubscriberTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ abstract protected function upsertEntity(string $entity, array $payload): void;
5656

5757
protected function setUp(): void
5858
{
59-
$this->context = Context::createDefaultContext();
59+
$this->context = Context::createCLIContext();
6060
$this->ids = new IdsCollection();
6161
}
6262

0 commit comments

Comments
 (0)