-
-
Notifications
You must be signed in to change notification settings - Fork 72
Closed
Description
getPriority has return type ?int
but getHeader
returns mixed|null
(in my case numeric string '3'
).
Line 180 in dfd7576
return $this->getHeader('X-Priority'); |
Can I send a PR with a fix?
$priority = $this->getHeader('X-Priority');
return is_numeric($priority) ? (int) $priority : null;
Metadata
Metadata
Assignees
Labels
No labels