瀏覽代碼

feat: 🐛 add abstract extension class

IceToast 2 年之前
父節點
當前提交
ca3e31580f
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      app/Helpers/AbstractExtension.php

+ 9 - 0
app/Helpers/AbstractExtension.php

@@ -0,0 +1,9 @@
+<?php
+
+namespace App\Helpers;
+
+// create a abstract class for the extension that will contain all the methods that will be used in the extension
+abstract class AbstractExtension
+{
+    abstract public static function getConfig(): array;
+}