Lines Matching refs:row
87 ->map(static fn (object $row): object => (object) [
88 'id' => $row->id,
89 'year' => (int) $row->year,
90 'fact' => $row->fact,
91 'type' => $row->type,
106 $row = $this->eventQuery($type, $operation);
109 if ($row !== null) {
110 $record = Registry::gedcomRecordFactory()->make($row->id, $this->tree);
196 $row = $this->eventQuery($type, $operation);
198 if ($row === null) {
202 if ($row->year < 0) {
203 $row->year = abs($row->year) . ' B.C.';
206 return (new Date($row->type . ' ' . $row->year))
284 $row = $this->eventQuery($type, $operation);
286 if ($row !== null) {
287 $record = Registry::gedcomRecordFactory()->make($row->id, $this->tree);
371 $row = $this->eventQuery($type, $operation);
373 if ($row != null) {
374 $record = Registry::gedcomRecordFactory()->make($row->id, $this->tree);
378 $fact = $record->facts([$row->fact])->first();