Skip to content

Commit ae79f19

Browse files
committed
Fix docstring
1 parent ce70f83 commit ae79f19

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/DbRecord.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,14 @@ public function quoteIdentifier($identifier): string
111111
}
112112

113113
/**
114-
* @inheritDoc
114+
* Retrieve the attributes representing the record in the database.
115+
*
116+
* This method returns an associative array where each key corresponds to a column name
117+
* as defined in the schema, and each value is the respective column's value from the
118+
* current instance's data. This can be particularly useful for debugging or when you need
119+
* to serialize the record for storage or transmission.
120+
*
121+
* @return array<string, mixed> An associative array where keys are column names and values are column values.
115122
*/
116123
protected function getAttributes(): array
117124
{

0 commit comments

Comments
 (0)