Skip to content

Commit f1e86de

Browse files
committed
Whitespace fixes
1 parent e5abf35 commit f1e86de

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

Diff for: README.md

+11-13
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ In this example, the Persistence works on a directory `path/to/json` in which th
3131

3232
```json
3333
{
34-
"age": 30,
35-
"city": "New York",
36-
"name": "John Doe"
34+
"age": 30,
35+
"city": "New York",
36+
"name": "John Doe"
3737
}
3838
```
3939

@@ -43,26 +43,24 @@ In this example, the Persistence works on a directory `path/to/json` in which th
4343

4444
```php
4545
try {
46-
$person = $repo->get('john-doe');
47-
print_r($person);
46+
$person = $repo->get('john-doe');
47+
print_r($person);
4848
}
4949
catch (\OutOfBoundsException) {
5050
// Not found
5151
}
5252
```
5353

54-
Output:
54+
Output will be like:
5555

5656
```text
57-
Array (
58-
[age] => 30
59-
[city] => New York
60-
[name] => John Doe
61-
)
57+
Array (
58+
[age] => 30
59+
[city] => New York
60+
[name] => John Doe
61+
)
6262
```
6363

64-
65-
6664
**Find one item by criteria.** This method my return `null`.
6765

6866
```php

0 commit comments

Comments
 (0)