From 094498380f381bb6435df9488d578a6b60c178c9 Mon Sep 17 00:00:00 2001 From: Andy Carter Date: Mon, 18 Feb 2019 10:56:47 +0000 Subject: [PATCH] Update PHP requirement for using private keyword "PHP > 7.1" implies you need a version above 7.1 whereas this syntax was added as part of PHP 7.1. I've modified the text to make this clearer in the readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a08e0a..995f139 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ class Action extends Enum } ``` -Note the `private` keyword requires PHP > 7.1, you can omit it on PHP 7.0. +Note the `private` keyword requires PHP 7.1 or higher, you can omit it on PHP 7.0. ## Usage