Skip to content

Commit 63fc2c0

Browse files
committed
docs: align comments
1 parent 745381c commit 63fc2c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

user_guide_src/source/database/results/007.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
$query = $db->query('SELECT * FROM users LIMIT 1;');
44
$row = $query->getRow(0, \App\Entities\User::class);
55

6-
echo $row->name; // access attributes
6+
echo $row->name; // access attributes
77
echo $row->reverse_name(); // or methods defined on the 'User' class

user_guide_src/source/database/results/015.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
$row = $query->getCustomRowObject(0, \App\Entities\User::class);
66

77
if (isset($row)) {
8-
echo $row->email; // access attributes
8+
echo $row->email; // access attributes
99
echo $row->lastLogin('Y-m-d'); // access class methods
1010
}

0 commit comments

Comments
 (0)