Thomas Landauer

Results 97 comments of Thomas Landauer

"Get it started" from where? From here? https://github.com/Payum/Payum/blob/master/docs/symfony/get-it-started.md => Well, `composer require` is the very first step there ;-) PR: Well, I already started looking around at https://github.com/Payum/PayumBundle but I...

No, sorry, don't know what to do there :-( I don't want to break anything. However, I will come up with a PR for https://github.com/Payum/Payum/blob/master/docs/symfony/get-it-started.md to make it more Symfony4-aware.

> Are you sure that an email without a body is right? Yes, see [RFC 5322](https://tools.ietf.org/html/rfc5322#section-2.1): > A message consists of header fields (collectively called "the header section of the...

I was wondering if this is maybe related to https://github.com/php-mime-mail-parser/php-mime-mail-parser/issues/332 ? Due to mailparse's way of reading stuff line by line? If not, is there already a PHP issue for...

> It doesn't change anything with a content-type: Sure it does! Before: ``` string(19) "text/plain; (error)" ``` After: ``` string(10) "text/plain" ``` So I guess you cannot look for `text/plain;...

At the moment when you do `$parser->linebreakAdded = true;` you don't know the `entityId` yet, right? If no, I guess your code is OK. Maybe you could rename things to...

I investigated this further and now can say more: Carbon doesn't help: ```php $carbon = new Carbon('Tue, 16 Jan 2018 18:40:31 +0100 (GMT+01:00)'); ``` leads to exactly the same error...

After investigating this some more I can now say: The real title here should be: **Remove comments (i.e. text in parentheses) from header lines** More precise: Offer a function to...

Are you talking about *new* or *existing* functions? Something like "getX" will never work, since you cannot set up a dedicated function for every (non-standard) header ;-)

@bertoost Is a function like `enum_value('App\\...\\Enum::Key')` what you had in mind?