PhyrePanel-mirror/web/app/Backup/Abstract/BackupConfigBase.php
2024-05-16 11:53:58 +03:00

17 lines
282 B
PHP

<?php
namespace App\Backup\Abstract;
abstract class BackupConfigBase
{
public array $excludePaths = [
];
public function getConfig()
{
$configValues = [];
$configValues['excludePaths'] = $this->excludePaths;
return $configValues;
}
}