Skip to content

Commit f85d916

Browse files
committed
[TASK] Ignore also Fixtures folder in phpstan
1 parent d3fd0e6 commit f85d916

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

phpstan.neon

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ parameters:
1313
- tests
1414
reportUnmatchedIgnoredErrors: false
1515
excludePaths:
16+
- '*tests/*/Fixtures/*'
1617
- '*tests/*/Fixture/*'
1718
- '*tests/*/Source/*'
1819
- '*tests/*/data/*'

tests/Unit/Service/PrototypeServiceDefinitionCheckerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function testIsPrototypeIsTrue(StaticCall $node, ServiceDefinition $servi
6666
*/
6767
public function testIsPrototypeIsFalse(StaticCall $node, ServiceDefinition $serviceDefinition): void
6868
{
69-
self::assertFalse($this->subject->isPrototype($serviceDefinition, $node));
69+
self::assertFalse($this->subject->isPrototype($serviceDefinition, $node));
7070
}
7171

7272
}

0 commit comments

Comments
 (0)