We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b13ff8a commit 301745eCopy full SHA for 301745e
1 file changed
tests/Attribute/RouteParamValue/ExpressionValuesTest.php
@@ -17,8 +17,6 @@ final class ExpressionValuesTest extends TestCase
17
#[TestWith([new Expression('obj.getHeight() * obj.getWidth()')])]
18
public function testValueNormalization(string|Expression $expression): void
19
{
20
- $value = (new ExpressionValues($expression))->expression;
21
-
22
- self::assertSame((string) $expression, (string) $value);
+ self::assertSame((string) $expression, (string) (new ExpressionValues($expression))->expression);
23
}
24
0 commit comments