From 2cb449a0d5823d6df7b9f65505d4290d519ca960 Mon Sep 17 00:00:00 2001 From: nupplaPhil Date: Sun, 22 Dec 2019 21:25:29 +0100 Subject: [PATCH] make the DI abstract so no instance is possible --- src/DI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DI.php b/src/DI.php index 0ce28f3aef..557e98a801 100644 --- a/src/DI.php +++ b/src/DI.php @@ -39,7 +39,7 @@ use Psr\Log\LoggerInterface; * @method static LoggerInterface workerLogger() * */ -class DI +abstract class DI { const CLASS_MAPPING = [ 'app' => App::class,