Skip to content

Commit 46d592a

Browse files
committed
docs: align => positions
1 parent b22183c commit 46d592a

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

user_guide_src/source/models/entities.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -239,10 +239,10 @@ As an example, imagine you have the simplified User Entity that is used througho
239239
class User extends Entity
240240
{
241241
protected $attributes = [
242-
'id' => null,
243-
'name' => null, // Represents a username
244-
'email' => null,
245-
'password' => null,
242+
'id' => null,
243+
'name' => null, // Represents a username
244+
'email' => null,
245+
'password' => null,
246246
'created_at' => null,
247247
'updated_at' => null,
248248
];
@@ -266,10 +266,10 @@ simply map the ``full_name`` column in the database to the ``$name`` property, a
266266
class User extends Entity
267267
{
268268
protected $attributes = [
269-
'id' => null,
270-
'name' => null, // Represents a username
271-
'email' => null,
272-
'password' => null,
269+
'id' => null,
270+
'name' => null, // Represents a username
271+
'email' => null,
272+
'password' => null,
273273
'created_at' => null,
274274
'updated_at' => null,
275275
];

0 commit comments

Comments
 (0)