mirror of
https://github.com/pelican-dev/panel.git
synced 2026-07-16 04:03:50 +03:00
15 lines
320 B
PHP
15 lines
320 B
PHP
<?php
|
|
|
|
namespace App\Extensions\BackupAdapter\Schemas;
|
|
|
|
use App\Extensions\BackupAdapter\BackupAdapterSchemaInterface;
|
|
use Illuminate\Support\Str;
|
|
|
|
abstract class BackupAdapterSchema implements BackupAdapterSchemaInterface
|
|
{
|
|
public function getName(): string
|
|
{
|
|
return Str::title($this->getId());
|
|
}
|
|
}
|