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());
 }