File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
namespace LaravelDoctrine \ORM \Notifications ;
4
4
5
5
use Doctrine \Common \Persistence \ManagerRegistry ;
6
- use Illuminate \Notifications \Notification ;
6
+ use Illuminate \Notifications \Notification as LaravelNotification ;
7
7
use LaravelDoctrine \ORM \Exceptions \NoEntityManagerFound ;
8
8
9
9
class DoctrineChannel
@@ -25,9 +25,9 @@ public function __construct(ManagerRegistry $registry)
25
25
* Send the given notification.
26
26
*
27
27
* @param mixed $notifiable
28
- * @param Notification $notification
28
+ * @param LaravelNotification $notification
29
29
*/
30
- public function send ($ notifiable , Notification $ notification )
30
+ public function send ($ notifiable , LaravelNotification $ notification )
31
31
{
32
32
$ entity = $ notification ->toEntity ($ notifiable );
33
33
You can’t perform that action at this time.
0 commit comments