feat: 🐛 add abstract extension class

This commit is contained in:
IceToast 2023-03-22 15:56:31 +01:00 committed by IceToast
parent 4509b11816
commit ca3e31580f

View file

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