-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Email system #388
New Email system #388
Conversation
…ace for sending emails.
* | ||
* @param array|null $options | ||
*/ | ||
public function __construct(array $options=null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think interface should not define __construct()
, we may need an abstract class for __construct()
requirement.
do you need any help in this? |
@baselbj thanks for the offer, but nope. Think I finally have something I like. Third time's a charm, right? :) If you're looking for a bigger job to tackle, then #114 or #141 would be next steps after this. Or porting over SQLite or MsSQL. Just let me know which one sounds like something you'd be interested in and we can discuss details. |
…rivers, I don't really want to tackle that refactoring currently.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
short array syntax
{ | ||
$suhosinFuncBlacklist = extension_loaded('suhosin') | ||
? explode(',', trim(ini_get('suhosin.executor.func.blacklist'))) | ||
: array(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
short array syntax
No description provided.