for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: quimmanrique
* Date: 13/02/17
* Time: 16:13
*/
namespace Infrastructure\AmqpLib\v26\RabbitMQ\Queue\Config;
class BindConfig
{
protected $topics = [];
public function addTopic($topic)
$this->topics[] = $topic;
return $this;
}
public function getTopics()
return $this->topics;