From 0728500b56d8f60aaac54e871fc7d81efade0a41 Mon Sep 17 00:00:00 2001 From: George Hanson Date: Thu, 30 Jun 2016 17:07:50 +0100 Subject: [PATCH] Fixed typo --- src/Feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Feed.php b/src/Feed.php index 3e91e04..df7c27c 100644 --- a/src/Feed.php +++ b/src/Feed.php @@ -57,7 +57,7 @@ public function push($notification, $notifiable) } foreach ($notifiable as $toBeNotified) { - if ( ! $toBeNotified instanceof Notifiable && !$tobeNotified instanceof NotifiableGroup) { + if ( ! $toBeNotified instanceof Notifiable && !$toBeNotified instanceof NotifiableGroup) { throw new NotNotifiableException("The notifiable members must implement the notifiable interface."); } }