for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AMQPAL\Adapter;
class AdapterStub implements AdapterInterface
{
public $options;
/**
* PhpAmqpLib constructor.
*
* @param array|\Traversable $options
*/
public function __construct($options)
$this->options = $options;
}
* @return ConnectionInterface
public function getConnection()
* @param resource|null $resource
* @return ChannelInterface
public function createChannel($resource = null)
$resource
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.