소스 검색

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;
+}