From 49006cac1f3d3c81baff1ae6fcf838fc2aa531f3 Mon Sep 17 00:00:00 2001 From: mustafauysal Date: Tue, 23 Apr 2024 12:29:46 +0300 Subject: [PATCH] rename bootstrap func --- plugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.php b/plugin.php index f3a6483..5efe856 100644 --- a/plugin.php +++ b/plugin.php @@ -98,11 +98,11 @@ function ( $class ) { * * @return void */ -function bootstrap() { +function bootstrap_easytts() { Core\setup(); Editor\setup(); Admin\Dashboard\setup(); Install::setup(); } -add_action( 'plugins_loaded', __NAMESPACE__ . '\\bootstrap' ); +add_action( 'plugins_loaded', __NAMESPACE__ . '\\bootstrap_easytts' );