for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Phloppy\Event;
use Symfony\Component\EventDispatcher\Event;
class GetJobsEvent extends Event
{
const ID = 'job.getjob';
/**
* @var string[]
*/
private $queues;
* @param string[] $queues
* @param $count
* @param $timeout
public function __construct(array $queues, $count, $timeout)
$count
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$timeout
$this->queues = $queues;
}
* @return string[]
public function getQueues()
return $this->queues;
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.