File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
tests/Persistence/Mapping Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,6 @@ public function testItThrowsWhenAttemptingToGetMetadataForShortAlias(): void
59
59
{
60
60
$ cmf = $ this ->getMockForAbstractClass (AbstractClassMetadataFactory::class);
61
61
$ this ->expectException (MappingException::class);
62
- /**
63
- * @phpstan-suppress ArgumentTypeCoercion
64
- * @phpstan-suppress UndefinedClass
65
- */
66
62
// @phpstan-ignore-next-line
67
63
$ cmf ->getMetadataFor ('App:Test ' );
68
64
}
@@ -71,10 +67,6 @@ public function testItThrowsWhenAttemptingToCheckTransientForShortAlias(): void
71
67
{
72
68
$ cmf = $ this ->getMockForAbstractClass (AbstractClassMetadataFactory::class);
73
69
$ this ->expectException (MappingException::class);
74
- /**
75
- * @phpstan-suppress ArgumentTypeCoercion
76
- * @phpstan-suppress UndefinedClass
77
- */
78
70
// @phpstan-ignore-next-line
79
71
$ cmf ->isTransient ('App:Test ' );
80
72
}
@@ -89,7 +81,6 @@ public function testItGetsTheSameMetadataForBackslashedClassName(): void
89
81
self ::createStub (ClassMetadata::class)
90
82
);
91
83
92
- /** @phpstan-suppress ArgumentTypeCoercion */
93
84
self ::assertSame ($ cmf ->getMetadataFor (SomeOtherEntity::class), $ cmf ->getMetadataFor ('\\' . SomeOtherEntity::class));
94
85
}
95
86
}
You can’t perform that action at this time.
0 commit comments