ctrlpanel/app/Helpers/AbstractExtension.php
2023-03-30 14:03:33 +02:00

10 lines
238 B
PHP

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