1
0
Fork 0
mirror of https://github.com/archtechx/money.git synced 2025-12-12 03:14:03 +00:00

Fix array syntax in example

This commit is contained in:
Samuel Štancl 2022-05-26 16:08:09 +02:00 committed by GitHub
parent 2021b13092
commit fd2fa86cf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -263,11 +263,11 @@ $currency = new Currency(
// array
$currency = [
code: 'FOO',
name: 'Foo currency',
rate: 1.8,
prefix: '# ',
suffix: ' FOO',
'code' => 'FOO',
'name' => 'Foo currency',
'rate' => 1.8,
'prefix' => '# ',
'suffix' => ' FOO',
];
// class