v0.4.0
版本发布时间: 2017-09-04 22:25:17
clue/reactphp-ami最新发布版本:v1.2.0(2024-02-23 17:59:35)
-
Feature / BC break: Simplify
Collection
by extendingResponse
and mergingCollector
intoActionSender
(#41 by @clue)// old $collector = new Collector($client); $collector->coreShowChannels()->then(function (Collection $collection) { var_dump($collection->getResponse()->getFieldValue('Message')); }); // new $collector = new ActionSender($client); $collector->coreShowChannels()->then(function (Collection $collection) { var_dump($collection->getFieldValue('Message')); });
-
Feature / BC break: Replace deprecated SocketClient with new Socket component and improve forward compatibility with upcoming ReactPHP components (#39 by @clue)
-
Feature / BC break: Consistently require URL when creating client (#40 by @clue)