From 2937dc763df27fb273c84f13bb7000500621ae58 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 9 Jul 2019 19:43:24 +1000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e9df7433a24b..d0f2461f10f3 100644 --- a/README.md +++ b/README.md @@ -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`