From 403f2aab1411f0f721da0837930c4929347e46d3 Mon Sep 17 00:00:00 2001 From: Jagepard Date: Mon, 8 Jun 2026 15:09:56 +0300 Subject: [PATCH] fix --- docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs.md b/docs.md index b30e975..8e9ee0f 100644 --- a/docs.md +++ b/docs.md @@ -34,7 +34,7 @@ ### Class: Rudra\Auth\AuthFacade | Visibility | Function | |:-----------|:---------| -| public static | `__callStatic(string $method, array $parameters): mixed`
Handles static method calls for the Facade class.
It dynamically resolves the underlying class name by removing "Facade" from the class name.
If the resolved class does not exist, it attempts to clean up the class name by removing spaces.
If the resolved class is not already registered in the container, it registers it.
Finally, it delegates the static method call to the resolved class instance.
-------------------------
Обрабатывает статические вызовы методов для класса Facade.
Динамически разрешает имя базового класса, удаляя "Facade" из имени класса.
Если разрешённый класс не существует, пытается очистить имя класса, удаляя пробелы.
Если разрешённый класс ещё не зарегистрирован в контейнере, он регистрируется.
В конце делегирует статический вызов метода экземпляру разрешённого класса. | +| public static | `__callStatic(string $method, array $parameters): mixed`
Handles static method calls for the Facade class
It dynamically resolves the underlying class name by removing "Facade" from the class name
If the resolved class does not exist, it attempts to clean up the class name by removing spaces
If the resolved class is not already registered in the container, it registers it
Finally, it delegates the static method call to the resolved class instance |