From 18918d6f47f57e5dd852177b7d1d12fa08172959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=AF=E8=87=A3?= Date: Tue, 13 Jan 2026 19:10:17 +0800 Subject: [PATCH] fix: set name property before calling parent constructor --- src/ApplicationProxy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ApplicationProxy.php b/src/ApplicationProxy.php index 8d326df..5dc5b39 100644 --- a/src/ApplicationProxy.php +++ b/src/ApplicationProxy.php @@ -18,8 +18,8 @@ class ApplicationProxy extends Application { public function __construct(ContainerInterface $container, string $name = 'app') { - parent::__construct($container); - $this->name = $name; + + parent::__construct($container); } }