Mikael Peigney

Results 22 comments of Mikael Peigney

It should be trivial to create a class implementing `DNSRecordGetterInterface` using a psr16 cache ```php use Psr\SimpleCache\CacheInterface; class DNSRecordCachingGetter implements DNSRecordGetterInterface { public function __construct(DNSRecordGetterInterface $recordGetter, CacheInterface $cache, int $ttl...

Are you not doing full backups of the SaaS env? In that case I'd understand if you want not to support full backups. I guess the documentation could be updated...

Can you restart the tests? | php | low | stable | high | | --- |--------|--------|--------| | 7.2 | ❌ | ❌ | ❌ | | 7.3 | ❌...

Your query is missing a value for the `$helo` argument. While not strictly required, because the SPF of pitt.edu is `v=spf1 include:%{i}._ip.%{h}._ehlo.%{d}._spf.vali.email ~all`, it tries to resolve `52.70.139.219._ip.._ehlo.pitt.edu._spf.vali.email` which is...

> I'm confused. The signature for getIPStringResult is getIPStringResult(string $ipAddress, string $domain), i.e., there is no "helo" argument. `getIPStringResult` is the easier way to get a result. If you need...

Attaching a logger to `connect` yields more details: ``` [debug] Sending Amp\Ssh\Message\ChannelOpen packet [debug] Receive Amp\Ssh\Message\ChannelOpenConfirmation packet [debug] Sending Amp\Ssh\Message\ChannelRequestExec packet [debug] Receive Amp\Ssh\Message\ChannelWindowAdjust packet [debug] Receive Amp\Ssh\Message\ChannelSuccess packet [debug]...

The tests are failing because Symfony's PHPUnit Bridge `DnsMock` does not "ignore" the trailing dot. Can you please try to update `tests/DNSRecordGetterTest.php` and add a trailing dot to each key...

Hello, I am interested in using and implementing this feature as well. Scheduler seems to have everything we need to implement this, the most important being that Scheduler dispatches events...

Doctrine annotations can be used as a fallback, but it is not a dependency. Attributes are "compatible" with PHP 7, in a sense that the compiler just ignores it. Scheduler...

Seeing the same issue, and the same workaround: setting `nullable: true` on the column prevents it from being detected as changed every time. For what it's worth, our column definition...