From: nupplaPhil Date: Sun, 22 Dec 2019 20:25:29 +0000 (+0100) Subject: make the DI abstract so no instance is possible X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2cb449a0d5823d6df7b9f65505d4290d519ca960;p=friendica.git make the DI abstract so no instance is possible --- 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,