for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Anax\Flash;
/**
* Store messages for flashing them to the user as user feedback.
*
*/
class CFlashBasic
{
* Properties
protected $message;
* Set a message.
* @param string a message.
* @return void
public function setMessage($message)
$this->message = $message;
}
* Get the message.
public function getMessage()
return $this->message;