Merge branch '3.x' into 4.x

* 3.x:
  Fix the null coalescing operator when the test returns null
  Fix the Elvis operator when there is some space between ? and :
  Bump version
  Prepare the 3.17.0 release
  Update CHANGELOG
This commit is contained in:
Fabien Potencier
2024-12-12 10:28:23 +01:00
5 changed files with 25 additions and 4 deletions
+10
View File
@@ -77,6 +77,16 @@ class TwigTestFoo implements \Iterator
return 'foo';
}
public function getEmpty()
{
return '';
}
public function getNull()
{
return null;
}
public function getSelf()
{
return $this;