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

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

public removeNotification ( )
    public function removeNotification()
    {
        $this->notification = false;
    }

Usage Example

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