From d2c3cfdedceea406edd0448d63161c4377c00a2c Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Sat, 23 May 2026 13:12:18 +0200 Subject: [PATCH 1/2] update stan --- .phive/phars.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.phive/phars.xml b/.phive/phars.xml index 4d447d1a..848f478f 100644 --- a/.phive/phars.xml +++ b/.phive/phars.xml @@ -1,4 +1,4 @@ - + From eb8eedeb3c5527eb35349f6186244d5bb9f2d7d3 Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Sat, 23 May 2026 13:22:15 +0200 Subject: [PATCH 2/2] fix rector issues --- src/Command/BakeMigrationCommand.php | 2 +- tests/test_app/App/Command/CustomBakeMigrationDiffCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/BakeMigrationCommand.php b/src/Command/BakeMigrationCommand.php index 66fb0580..ce9af3cb 100644 --- a/src/Command/BakeMigrationCommand.php +++ b/src/Command/BakeMigrationCommand.php @@ -245,7 +245,7 @@ public function getOptionParser(): ConsoleOptionParser /** * @inheritDoc */ - public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + protected function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser { $parser = parent::buildOptionParser($parser); diff --git a/tests/test_app/App/Command/CustomBakeMigrationDiffCommand.php b/tests/test_app/App/Command/CustomBakeMigrationDiffCommand.php index e7bc5ae2..c52597f6 100644 --- a/tests/test_app/App/Command/CustomBakeMigrationDiffCommand.php +++ b/tests/test_app/App/Command/CustomBakeMigrationDiffCommand.php @@ -23,7 +23,7 @@ public static function defaultName(): string /** * @inheritDoc */ - public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + protected function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser { return parent::buildOptionParser($parser) ->addOption('test-target-folder')