Phive\Queue\Pdo\GenericPdoQueue::__construct PHP Method

__construct() public method

public __construct ( PDO $pdo, $tableName, $routineName = null )
$pdo PDO
    public function __construct(\PDO $pdo, $tableName, $routineName = null)
    {
        parent::__construct($pdo, $tableName);
        $this->routineName = $routineName ?: $this->tableName . '_pop';
    }