Skip to content

Commit 7d19d71

Browse files
committed
Update docs/manual/en-US/chapters/packages/data.md
1 parent fc01d74 commit 7d19d71

File tree

1 file changed

+2
-2
lines changed
  • manual/en-US/chapters/packages

1 file changed

+2
-2
lines changed

manual/en-US/chapters/packages/data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
### JData
44

5-
`JData` is a class that is used to store data but allowing you to access the data by mimicking the way PHP handles class properties. Rather than explicitly declaring properties in the class, `JData` stores virtual properties of the class in a private internal array. Concrete properties can still be defined but these a separate from the data.
5+
`JData` is a class that is used to store data but allowing you to access the data by mimicking the way PHP handles class properties. Rather than explicitly declaring properties in the class, `JData` stores virtual properties of the class in a private internal array. Concrete properties can still be defined but these are separate from the data.
66

77
#### Construction
88

9-
The constructor for a new `JData` object can optionally take an array or an object. The keys of the array, or the properties of the object will be bound to the properties of the `JData` object.
9+
The constructor for a new `JData` object can optionally take an array or an object. The keys of the array or the properties of the object will be bound to the properties of the `JData` object.
1010

1111
```php
1212
// Create an empty object.

0 commit comments

Comments
 (0)