From 80c14a44c9b26848705ee0300a1561d212fc775b Mon Sep 17 00:00:00 2001 From: carherco Date: Thu, 8 Jun 2023 16:08:31 +0200 Subject: [PATCH] Add match to list of reserved words Match is a reserved word starting from php 8.0. --- src/Naming/AbstractNamingStrategy.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Naming/AbstractNamingStrategy.php b/src/Naming/AbstractNamingStrategy.php index ff3f335..d183940 100644 --- a/src/Naming/AbstractNamingStrategy.php +++ b/src/Naming/AbstractNamingStrategy.php @@ -58,6 +58,7 @@ abstract class AbstractNamingStrategy implements NamingStrategy 'interface', 'isset', 'list', + 'match', 'mixed', 'namespace', 'new',