Version 1.0.0

This commit is contained in:
2025-12-12 11:41:44 +04:00
commit df7e485650
30 changed files with 7761 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php
declare(strict_types=1);
namespace Diffhead\PHP\LaravelRabbitMQ\Dto;
use Diffhead\PHP\Dto\Dto;
use Diffhead\PHP\Dto\Property;
/**
* @property \Diffhead\PHP\Dto\Property<string|null> $connection
* @property \Diffhead\PHP\Dto\Property<string|null> $queue
* @property \Diffhead\PHP\Dto\Property<string|null> $exchange
* @property \Diffhead\PHP\Dto\Property<string|null> $routingKey
* @property \Diffhead\PHP\Dto\Property<string|null> $exchangeType
* @property \Diffhead\PHP\Dto\Property<bool> $exchangeIsDefault
* @property \Diffhead\PHP\Dto\Property<string|null> $tag
*/
class ConsumerParameters extends Dto
{
protected Property $connection;
protected Property $queue;
protected Property $exchange;
protected Property $routingKey;
protected Property $exchangeType;
protected Property $exchangeIsDefault;
protected Property $tag;
}