logbook/class/core/config/PluginConfiguration.class.php
linarphy a8aa60ae83
Fix following first run
The code 'works' as is
2025-04-15 21:03:44 +02:00

20 lines
286 B
PHP

<?php
namespace core\config;
/**
* Parent class to all plugins configuration
*/
abstract readonly class PluginConfiguration
{
/**
* Priority of the plugin.
*
* Higher is first (priority of 3 will override priority of 1)
*
* @var \int
*/
protected int $priority;
}
?>