Steve Pavarno

Results 28 comments of Steve Pavarno

There is already something in the sqlite driver https://github.com/auraphp/Aura.SqlQuery/blob/3.x/src/Sqlite/Insert.php https://www.sqlite.org/lang_conflict.html #115 aimed to use the same method signature for MySQL and sqlite so unit tests could swap drivers with no...

Sadly I have no time in the next few months

Thanks for asking... Interesting idea. Looks like your code would handle complicated stuff like the below OK ```php $select->join('left', 'person_travel', 'person_travel.person_id = person.id and person_travel.finishes_on >= :startDate and person_travel.finishes_on =...

yep. thanks for the extra explanation. on further thought i quite like the new syntax: it is clean, lightweight, flows well, and makes good use of new language features. Can...

thanks. it will make migration from 2.x to 3.x easier i guess. fwiw i'm living dangerously and using 3.x in production. its working well.

yes. Have you considered splitting out some functionality from class.phpmailer.php into smaller subclasses? It might help reduce the complexity if something like a decorator pattern http://en.wikipedia.org/wiki/Decorator_pattern was used to do...

hmmmm.... yes i see your point in #88. In theory it should be possible to completely rewrite phpmailer internally and create facade class to preserve the old interface using magic...

a simple fix might be to move `guzzlehttp/psr7` to the "suggest" block in composer.json?

+1 this would be awesome. I don't know french, but am happy to review / tweak the english if it is helpful. Can we also have the glossary items as...

Yeah would be cool to have it pick out the 10 most complicated classes or the 5 most coupled or the 7 files most likely to have bugs in etc....