mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 23:50:33 +00:00
17 lines
282 B
PHP
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;
|
|
}
|
|
}
|