We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bc246f commit 7ddc668Copy full SHA for 7ddc668
src/lib/Actors/ActorConfig.php
@@ -49,7 +49,7 @@ public function __construct(
49
*/
50
public function get_actor_type_from_dapr_type(string $dapr_type): string|null
51
{
52
- if($this->actor_name_to_type[$dapr_type]) return $this->actor_name_to_type[$dapr_type];
+ if($this->actor_name_to_type[$dapr_type] ?? false) return $this->actor_name_to_type[$dapr_type];
53
54
$actors = array_combine($this->get_supported_actors(), $this->actor_name_to_type);
55
0 commit comments