-
-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
Hi.
I understand the difference between the getMessages and getCurrentMessages methods and how they work, but I don't get why these "current" messages could be accessed on the second request even if we haven't really added anything during it.
Is this the expected behaviour? If so, what makes them "current" then?
Here's a test:
public function testCurrentMessages()
{
$helper = new FlashMessenger();
$this->assertFalse($helper->hasCurrentMessages()); // OK
$helper->addMessage('foo');
$this->assertTrue($helper->hasCurrentMessages()); // OK
$this->assertFalse($helper->hasMessages()); // OK
unset($helper);
$helper2 = new FlashMessenger();
$this->assertFalse($helper2->hasCurrentMessages()); // Failure
$this->assertTrue($helper2->hasMessages()); // OK
}Originally posted by @panychek at zendframework/zend-mvc-plugin-flashmessenger#25
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels