From 07be6c864c30cbf9ec17e46e0b70e5f68faefdf2 Mon Sep 17 00:00:00 2001 From: svizevv <130470724+svizevv@users.noreply.github.com> Date: Fri, 12 Apr 2024 00:10:53 +0200 Subject: [PATCH] Consider adding a new method to an interface as a MAJOR change --- src/ReportBuilder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReportBuilder.php b/src/ReportBuilder.php index d2886a5..4454b15 100644 --- a/src/ReportBuilder.php +++ b/src/ReportBuilder.php @@ -130,7 +130,7 @@ protected function makeVersionReport() 'V016' => Level::MINOR, // Add protected method 'V019' => Level::MINOR, // Add public property 'V020' => Level::MINOR, // Add protected property - 'V034' => Level::MINOR, // Add public method to an interface + 'V034' => Level::MAJOR, // Add public method to an interface 'V047' => Level::MINOR, // Add public method to trait 'V048' => Level::MINOR, // Add protected method to trait 'V057' => Level::MINOR, // Add private method to trait