Quellcode durchsuchen

refactor(core): 替换Helper调用为直接函数调用

- 将多个文件中的SixShop\Core\Helper调用替换为对应的直接函数调用
- 移除了对Helper类的依赖引用
- 更新了extension_path函数的调用方式
- 统一了throw_logic_exception函数的使用方式
- 清理了无用的Helper类导入语句
runphp vor 3 Monaten
Ursprung
Commit
1af7e649db
1 geänderte Dateien mit 0 neuen und 1 gelöschten Zeilen
  1. 0 1
      src/Controller/PaymentController.php

+ 0 - 1
src/Controller/PaymentController.php

@@ -3,7 +3,6 @@ declare(strict_types=1);
 
 namespace SixShop\Payment\Controller;
 
-use SixShop\Core\Helper;
 use SixShop\Core\Request;
 use SixShop\Payment\Config;
 use SixShop\Payment\PaymentManager;