Pinq\Queries\Segments\Range::__construct PHP Method

__construct() public method

public __construct ( $startParameterId, $amountParameterId )
    public function __construct($startParameterId, $amountParameterId)
    {
        $this->startParameterId = $startParameterId;
        $this->amountParameterId = $amountParameterId;
    }

Usage Example

Ejemplo n.º 1
0
 public function __construct($start, $amount)
 {
     parent::__construct('', '');
     $this->start = $start;
     $this->amount = $amount;
 }