1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 
<?php


namespace SAREhub\Client\Amqp;


class AmqpEnvironmentSchema
{
    /**
     * @var AmqpQueueSchema[]
     */
    private $queueSchemas = [];

    /**
     * @var AmqpQueueBindingSchema[]
     */
    private $queueBindingSchemas = [];

    /**
     * @var AmqpExchangeSchema[]
     */
    private $exchangeSchemas = [];

    public static function newInstance(): self
    {
        return new self();
    }

    public function getQueueSchemas(): array
    {
        return $this->queueSchemas;
    }

    public function addQueueSchema(AmqpQueueSchema $queueSchema): AmqpEnvironmentSchema
    {
        $this->queueSchemas[] = $queueSchema;
        return $this;
    }

    public function getQueueBindingSchemas(): array
    {
        return $this->queueBindingSchemas;
    }

    public function addQueueBindingSchema(AmqpQueueBindingSchema $queueBindingSchema): self
    {
        $this->queueBindingSchemas[] = $queueBindingSchema;
        return $this;
    }

    public function getExchangeSchemas(): array
    {
        return $this->exchangeSchemas;
    }

    public function addExchangeSchema(AmqpExchangeSchema $exchangeSchema): AmqpEnvironmentSchema
    {
        $this->exchangeSchemas[] = $exchangeSchema;
        return $this;
    }
}