1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Update README.md

This commit is contained in:
David Bomba 2019-07-09 19:43:24 +10:00 committed by GitHub
parent e669b96f8a
commit 2937dc763d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ Where practical code should be strongly typed, ie your methods must return a typ
`public function doThis() : void`
PHP >= 7.1 allows the return type Nullable so there should be no circumstance a type cannot be return by using the following:
PHP >= 7.3 allows the return type Nullable so there should be no circumstance a type cannot be return by using the following:
`public function doThat() ?:string`