Fenos\Notifynder\Contracts\NotificationDB::readOne PHP Method

readOne() public method

Make Read One Notification.
public readOne ( Notification $notification ) : boolean | Notification
$notification Fenos\Notifynder\Models\Notification
return boolean | Fenos\Notifynder\Models\Notification
    public function readOne(Notification $notification);

Usage Example

 /** @test */
 public function it_read_one_notification_by_id(NotificationDB $notificationRepo)
 {
     $notification_id = 1;
     $notification = new Notification();
     $notificationRepo->find($notification_id)->shouldBeCalled()->willReturn($notification);
     $notificationRepo->readOne($notification)->shouldBeCalled()->willReturn($notification);
     $this->readOne($notification_id)->shouldReturnAnInstanceOf($notification);
 }
All Usage Examples Of Fenos\Notifynder\Contracts\NotificationDB::readOne