fmarchalemisys
fmarchalemisys
This is not working in `monolog.yaml`: ```` monolog: handlers: elk: type: elasticsearch formatter: elastica_formatter level: INFO elasticsearch: transport: https host: "%env(ELK_HOST)%" port: 9243 user: "%env(ELK_USER)%" password: "%env(ELK_PASSWORD)%" ```` The error...
My entities have some helper methods looking like this: ~~~~~php public function setPosition($latitude, $longitude) { $this->setLatitude($latitude); $this->setLongitude($longitude); return $this; } ~~~~~ It seems Symfony 4 as an improved `PropertyInfo` class...
To list mails and templates, I had to set `lexik_mailer.simple_pager` as public. To edit a mail, I had to set `lexik_mailer.form.handler.email` as public. To edit a layout, `lexik_mailer.form.handler.layout` has to...
Symfony 4 fails with error "Cannot check if an unsubmitted form is valid. Call Form::isSubmitted() before Form::isValid()." in `Form/Handler/EmailFormHandler.php` at line 91. The following code isn't valid any more: ~~~~~...
The [constructor of DNSRecords](https://github.com/egulias/EmailValidator/blob/db4c31490b9fbc02eeb4e6d39c61c74ee1d14f69/src/Validation/DNSRecords.php#L22) expects an array as first argument. ```` public function __construct(array $records, bool $error = false) ```` But it is created in [DNSGetRecordWrapper](https://github.com/egulias/EmailValidator/blob/db4c31490b9fbc02eeb4e6d39c61c74ee1d14f69/src/Validation/DNSGetRecordWrapper.php#L24) with the result returned...