BeanstalkdJob::delete()

void delete() Delete the job from the queue. Return Value void

BeanstalkdJob::bury()

void bury() Bury the job in the queue. Return Value void

BeanstalkdJob::attempts()

int attempts() Get the number of times the job has been attempted. Return Value int

BeanstalkdJob

BeanstalkdJob class BeanstalkdJob extends Job implements Job (View source) Methods int attempts() Get the number of times the job has been attempted. string getRawBody() Get the raw body string for the job. void fire() Fire the job. from Job void delete() Delete the job from the queue. bool isDeleted() Determine if the job has been deleted. from Job void release(int $delay) Release the job back into the queue. bool isReleased() Determine if the job was released

BeanstalkdConnector::connect()

Queue connect(array $config) Establish a queue connection. Parameters array $config Return Value Queue

BeanstalkdConnector

BeanstalkdConnector class BeanstalkdConnector implements ConnectorInterface (View source) Methods Queue connect(array $config) Establish a queue connection.

BcryptHasher::setRounds()

$this setRounds(int $rounds) Set the default password work factor. Parameters int $rounds Return Value $this

BcryptHasher::needsRehash()

bool needsRehash(string $hashedValue, array $options = array()) Check if the given hash has been hashed using the given options. Parameters string $hashedValue array $options Return Value bool

BcryptHasher::make()

string make(string $value, array $options = array()) Hash the given value. Parameters string $value array $options Return Value string Exceptions RuntimeException

BcryptHasher::check()

bool check(string $value, string $hashedValue, array $options = array()) Check the given plain value against a hash. Parameters string $value string $hashedValue array $options Return Value bool