Add lib/PhpAmqpLib

This commit is contained in:
Guillaume COEUGNET
2016-03-30 16:09:10 +02:00
parent 9c7cc69be6
commit fcd2aae898
45 changed files with 8677 additions and 0 deletions
@@ -0,0 +1,16 @@
<?php
namespace PhpAmqpLib\Exception;
class AMQPBasicCancelException extends \Exception implements AMQPExceptionInterface
{
/** @var string */
public $consumerTag;
/**
* @param string $consumerTag
*/
public function __construct($consumerTag)
{
$this->consumerTag = $consumerTag;
}
}