there's not type hint 'resource' (bug in my converter)

https://wiki.php.net/rfc/scalar_type_hints#type_hint_choices
This commit is contained in:
djmaze 2020-03-11 15:42:46 +01:00
parent 69a33c0c25
commit 690190bb26
8 changed files with 12 additions and 11 deletions

View file

@ -140,8 +140,8 @@ class HeaderCollection extends \MailSo\Base\Collection
$aResult = $this->FilterList(function ($oHeader) use ($sHeaderName) {
return $oHeader && \strtolower($oHeader->Name()) !== \strtolower($sHeaderName);
});
return $this->SetAsArray($aResult);
$this->SetAsArray($aResult);
return $this;
}
/**