Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ProklUng committed Jul 13, 2021
1 parent 7722d32 commit 4e95e8d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ class UploadPictureConsumer implements ConsumerInterface
- [ ] Dynamic consumer
- [ ] Batch consumer
- [ ] Anon consumer
- [x] Rpc client (в разработке)
- [x] Rpc server (в разработке)
- [x] Rpc client
- [x] Rpc server
- [ ] Logged channel

## Credits
Expand Down
4 changes: 2 additions & 2 deletions install/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
*/

$arModuleVersion = [
'VERSION' => '1.1.0',
'VERSION_DATE' => '2021-07-13 00:00:00',
'VERSION' => '1.1.1',
'VERSION_DATE' => '2021-07-13 15:00:00',
];
8 changes: 5 additions & 3 deletions lib/Examples/RandomIntServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@

namespace Proklung\RabbitMq\Examples;

use PhpAmqpLib\Message\AMQPMessage;

/**
* Class RandomIntServer
* @package Proklung\RabbitMq\Examples
*/
class RandomIntServer
{
public function execute()
public function execute(AMQPMessage $request)
{

}
return ['request_id' => mt_rand(1, 123)];
}
}

0 comments on commit 4e95e8d

Please sign in to comment.