8000
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 8d4fcc0 commit a2ea28dCopy full SHA for a2ea28d
src/Symfony/Component/HttpFoundation/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