Skip to content

Commit 177971b

Browse files
authored
Merge pull request #661 from 77web/fix/3.1.x-doctrine-channel
fixed DoctrineChannel to match IlluminateRegistry::getManager()'s return type
2 parents 28d17f4 + 595c107 commit 177971b

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/Notifications/DoctrineChannel.php

+8-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
use Doctrine\Persistence\ManagerRegistry;
88
use Illuminate\Notifications\Notification as LaravelNotification;
9+
use InvalidArgumentException;
910
use LaravelDoctrine\ORM\Exceptions\NoEntityManagerFound;
1011
use RuntimeException;
1112

@@ -25,9 +26,13 @@ public function send(mixed $notifiable, LaravelNotification $notification): void
2526
$entity = $this->getEntity($notifiable, $notification);
2627

2728
if (method_exists($notifiable, 'routeNotificationForDoctrine')) {
28-
$em = $this->registry->getManager(
29-
$notifiable->routeNotificationFor('doctrine', $notification),
30-
);
29+
try {
30+
$em = $this->registry->getManager(
31+
$notifiable->routeNotificationFor('doctrine', $notification),
32+
);
33+
} catch (InvalidArgumentException) {
34+
$em = null;
35+
}
3136
} else {
3237
$em = $this->registry->getManagerForClass($entity::class);
3338
}

tests/Feature/Notifications/DoctrineChannelTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
use Doctrine\ORM\EntityManagerInterface;
88
use Doctrine\Persistence\ManagerRegistry;
9+
use InvalidArgumentException;
910
use LaravelDoctrine\ORM\Exceptions\NoEntityManagerFound;
1011
use LaravelDoctrine\ORM\Notifications\DoctrineChannel;
1112
use LaravelDoctrineTest\ORM\Assets\Notifications\CustomNotifiableStub;
@@ -90,7 +91,7 @@ public function testItShouldThrowExceptionWhenItDoesNotFindAnEm(): void
9091

9192
$this->registry->shouldReceive('getManager')
9293
->with('custom')
93-
->andReturnNull();
94+
->andThrow(InvalidArgumentException::class);
9495

9596
$this->channel->send(new CustomNotifiableStub(), new NotificationStub());
9697
}

0 commit comments

Comments
 (0)