/** * Model the value * Example: $this->value(value, 'value_key', 'table_name'); * * @param mixed $value The value to model * @param string $field The field key * @param string|null $table The table * * @return mixed * @since 3.2.0 */ public function value($value, string $field, ?string $table = null); /** * Model the values of an item * Example: $this->item(Object, 'table_name'); * * @param object $item The item object * @param string|null $table The table * * @return object|null * @since 3.2.0 */ public function item(object $item, ?string $table = null): ?object; /** * Model the values of multiple items * Example: $this->items(Array, 'table_name'); * * @param array|null $items The array of item objects * @param string|null $table The table * * @return array|null * @since 3.2.0 */ public function items(?array $items = null, ?string $table = null): ?array; /** * Model the values of an row * Example: $this->item(Array, 'table_name'); * * @param array $item The item array * @param string|null $table The table * * @return array|null * @since 3.2.0 */ public function row(array $item, ?string $table = null): ?array; /** * Model the values of multiple rows * Example: $this->items(Array, 'table_name'); * * @param array|null $items The array of item array * @param string|null $table The table * * @return array|null * @since 3.2.0 */ public function rows(?array $items = null, ?string $table = null): ?array; /** * Get last modeled ID * Example: $this->last('table_name'); * * @param string|null $table The table * * @return int|null * @since 3.2.0 */ public function last(?string $table = null): ?int;