for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of order_management
* User: Sinan TURGUT <[email protected]>
* Date: 24.06.2019
* php version 7.2
*
* @category Assessment
* @package OrderManagement
* @author Sinan TURGUT <[email protected]>
* @license See LICENSE file
* @link https://dev.sinanturgut.com.tr
*/
namespace OrderManagement\RabbitMQ;
* Class AbstractQueue
* @package OrderManagement\RabbitMQ
abstract class AbstractQueue implements QueueInterface
{
* @var string
protected $name = '';
* @var bool
protected $passive = false;
protected $durable = true;
protected $exclusive = false;
protected $autoDelete = false;
* @return string
public function getName() : string
return $this->name;
}
* @return bool
public function isPassive() : bool
return $this->passive;
public function isDurable() : bool
return $this->durable;
public function isExclusive() : bool
return $this->exclusive;
public function isAutoDelete() : bool
return $this->autoDelete;