Version 1.0.0
This commit is contained in:
28
src/Dto/ConsumerParameters.php
Normal file
28
src/Dto/ConsumerParameters.php
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user