rcrowe\Hippy\Message::setNotification PHP Метод

setNotification() публичный Метод

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

Usage Example

Пример #1
0
 public function testSetNotification()
 {
     $message = new Message(true);
     $this->assertTrue($message->getNotification());
     $message = new Message();
     $message->setNotification();
     $this->assertTrue($message->getNotification());
 }