%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/graphicd/public_html/vebto/vendor/pda/pheanstalk/src/
Upload File :
Create Path :
Current File : /home/graphicd/public_html/vebto/vendor/pda/pheanstalk/src/JobId.php

<?php


namespace Pheanstalk;

use Pheanstalk\Contract\JobIdInterface;

/**
 * This class implements a value object for beanstalkd job IDs.
 */
class JobId implements JobIdInterface
{
    private $id;

    public function __construct(int $id)
    {
        if ($id < 0) {
            throw new \InvalidArgumentException('Id must be >= 0');
        }
        $this->id = $id;
    }

    public function getId(): int
    {
        return $this->id;
    }
}

Zerion Mini Shell 1.0