From 7496f301fa6e3d47f92448af3fc306ac9449638d Mon Sep 17 00:00:00 2001 From: James Titcumb Date: Mon, 18 Aug 2025 08:30:40 +0100 Subject: [PATCH] Silence deprecations --- bin/pie | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/pie b/bin/pie index dbf10420..85a04710 100755 --- a/bin/pie +++ b/bin/pie @@ -27,6 +27,8 @@ use Symfony\Component\EventDispatcher\EventDispatcher; /** @psalm-suppress UnresolvableInclude */ include $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php'; +error_reporting(error_reporting() & ~E_DEPRECATED); + $container = Container::factory(); $application = new Application('🥧 PHP Installer for Extensions (PIE)', PieVersion::get());