From 58cbc9eb6bad5dbcecb56eab0ef3350504db774c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Herry?= Date: Tue, 23 Jan 2024 08:23:00 +0100 Subject: [PATCH] Add missing import UnsupportedFeatureException was not imported --- src/PHPSQLParser/builders/JoinBuilder.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PHPSQLParser/builders/JoinBuilder.php b/src/PHPSQLParser/builders/JoinBuilder.php index 1b324551..c2f1c951 100644 --- a/src/PHPSQLParser/builders/JoinBuilder.php +++ b/src/PHPSQLParser/builders/JoinBuilder.php @@ -41,6 +41,7 @@ */ namespace PHPSQLParser\builders; +use PHPSQLParser\exceptions\UnsupportedFeatureException; /** * This class implements the builder for the JOIN statement parts (within FROM).