We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e4a9d commit b7d1f3eCopy full SHA for b7d1f3e
Tests/Session/Flash/FlashBagTest.php
@@ -135,8 +135,10 @@ public function testPeekAll()
135
/**
136
* @covers Symfony\Component\HttpFoundation\Session\Flash\FlashBag::getIterator
137
*/
138
- public function testGetIterator()
+ public function testLegacyGetIterator()
139
{
140
+ $this->iniSet('error_reporting', -1 & ~E_USER_DEPRECATED);
141
+
142
$flashes = array('hello' => 'world', 'beep' => 'boop', 'notice' => 'nope');
143
foreach ($flashes as $key => $val) {
144
$this->bag->set($key, $val);
0 commit comments