Thomas Mauro Vargiu
Thomas Mauro Vargiu
It's possible to send a Logoff action. When this happens, Asterisk sends a response message and then close the connection. With this PR is possible to read the Logoff response...
As described in doctrine/DoctrineORMModule#567 there is a problem with zend-eventmanager 3.x. The [`trigger()`](https://github.com/zendframework/ZendDeveloperTools/blob/master/src/Module.php#L63) method is not fully compatible with zend-eventmanager 3.x.
Implemented required methods in `ConnectionInterface` used in ` ConnectionTrait`. This could be considered a BC.
doctrine/dbal [2.11](https://github.com/doctrine/dbal/blob/2.11.0/composer.json) was released with php >= 7.3 compatibility, later (in [2.13.0](https://github.com/doctrine/dbal/blob/2.13.0/composer.json)) they change it again to php 7.1 minimum version. We should try to do the same.
I was looking at the code and I see: ```typescript /** Send an `ack` to the underlying channel. */ ack(message: amqplib.Message, allUpTo?: boolean): void { this._channel && this._channel.ack(message, allUpTo); }...
In order to improve AoT compiler, on my project I've done some changes. The problem is that with AoT, dependency factories are not created. To accomplish my goal I've made...
- some fixes on PHPDoc - added checks on types when needed ### Changed - Throw an exception when unable to uncompress response content - Relative URIs are not allowed...
I saw a new PR (#149) to resolve an issue (#36) with relative URIs. But as a @samsonasik said in a [comment](https://github.com/zendframework/zend-http/pull/149#issuecomment-386852954), relative URI's should not be used. No adapters...
In order to bump to PHP 7 minimum version in the future, I used phpstan to static analyse the code, correcting some phpdoc errors and adding guards throwing exceptions when...
Allow retrieving services from container in `ModuleManagerFactory`