rcrowe\Hippy\Message::setNotification PHP Method

setNotification() public method

public setNotification ( )
    public function setNotification()
    {
        $this->notification = true;
    }

Usage Example

Exemplo n.º 1
0
 public function testSetNotification()
 {
     $message = new Message(true);
     $this->assertTrue($message->getNotification());
     $message = new Message();
     $message->setNotification();
     $this->assertTrue($message->getNotification());
 }