From 7862e58f9a3132afba30c313263dc379a4640be0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lenon?= Date: Fri, 22 Sep 2023 16:17:45 +0100 Subject: [PATCH] fix(ioc): remove third argument --- package.json | 2 +- src/ignite/Ignite.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 97dd1a0..96d9af1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@athenna/core", - "version": "4.9.0", + "version": "4.9.1", "description": "The plug and play Node.js framework.", "license": "MIT", "author": "João Lenon ", diff --git a/src/ignite/Ignite.ts b/src/ignite/Ignite.ts index e2e77a7..8d39a02 100644 --- a/src/ignite/Ignite.ts +++ b/src/ignite/Ignite.ts @@ -436,7 +436,7 @@ export class Ignite { * Register this Ignite instance inside the IoC container. */ public registerItselfToTheContainer(): void { - this.container.instance('Athenna/Core/Ignite', this, false) + this.container.instance('Athenna/Core/Ignite', this) } /**