1
0
mirror of https://github.com/halaxa/json-machine.git synced 2025-03-15 17:09:39 +01:00

readme typo

This commit is contained in:
Filip Halaxa 2018-12-02 20:30:39 +01:00 committed by GitHub
parent 58e59a2b8e
commit 97f899fa6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ JSON Machine is drop-in replacement for non efficient iteration of big JSONs:
+ $users = \JsonMachine\JsonMachine::fromFile('500MB-users.json');
foreach ($users as $id => $user) {
// the script will probably die before getting here
// just process $user as usual
}
```