您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
|
<?php
|
|
|
|
|
|
namespace App\Tables;
|
|
|
|
use App\Models\Row;
|
|
|
|
class RowNumerator extends BaseNumerator
|
|
{
|
|
/**
|
|
* Create a numerator for the given number of rows.
|
|
*
|
|
* @param int $capacity - how many
|
|
*/
|
|
public function __construct($capacity)
|
|
{
|
|
parent::__construct(Row::allocateRowIDs($capacity));
|
|
}
|
|
}
|
|
|