From 73fb1f1549315804e2ebb9db4f3c6cbd89488244 Mon Sep 17 00:00:00 2001 From: Art4 Date: Mon, 23 Dec 2024 12:39:11 +0000 Subject: [PATCH] Remove DI::app() method --- src/DI.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/DI.php b/src/DI.php index de80da34d3..18d74dd23a 100644 --- a/src/DI.php +++ b/src/DI.php @@ -71,16 +71,6 @@ abstract class DI // common instances // - /** - * @deprecated 2024.12 use DI::appHelper() instead - * - * @return App - */ - public static function app() - { - return self::$dice->create(App::class); - } - public static function appHelper(): AppHelper { return self::$dice->create(AppHelper::class);