make the DI abstract so no instance is possible

This commit is contained in:
Philipp Holzer 2019-12-22 21:25:29 +01:00
parent 987b29d963
commit 2cb449a0d5
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ use Psr\Log\LoggerInterface;
* @method static LoggerInterface workerLogger()
*
*/
class DI
abstract class DI
{
const CLASS_MAPPING = [
'app' => App::class,