Skip to content

Commit 9477231

Browse files
authored
Merge pull request #1 from RPillz/master
Bugfix in Postmark adapter - unknown PHP function array_get()
2 parents 990f267 + d0c4b63 commit 9477231

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Adapters/Postmark.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function getAction()
3939
return $this->eventMap[ Arr::get($this->payload, 'Type') ];
4040
}
4141

42-
return array_get($this->eventMap, Arr::get($this->payload, 'RecordType'));
42+
return Arr::get($this->eventMap, Arr::get($this->payload, 'RecordType'));
4343
}
4444

4545
/**

0 commit comments

Comments
 (0)