Lines Matching refs:rows
44 protected ?array $rows = null; variable in ComboStrap\\Meta\\Api\\MetadataTabular
55 if ($this->rows === null) {
58 return $this->rows;
75 $this->rows = $value;
84 if ($this->rows === null) {
87 return $this->rowsToStore($this->rows);
141 $this->rows[$rowId] = [$identifierPersistentName => $identifierMetadata];
218 $this->rows[] = $row;
248 $this->rows[$identifierValue] = [$identifierPersistentName => $identifierMetadata];
273 $this->rows[$idValue] = $row;
282 return $this->rows !== null;
289 if ($this->rows === null) {
292 unset($this->rows[$identifierValue]);
301 if ($this->rows === null) {
304 return isset($this->rows[$identifierValue]);
311 if ($this->rows === null) {
314 return sizeof($this->rows);
326 return $this->rows[$normalizedValue] ?? null;
351 $this->rows[$identifier] = $row;