Fix styling

This commit is contained in:
Thijmen
2024-06-10 20:43:34 +00:00
committed by github-actions[bot]
parent 41fb6a1fc9
commit d86274cc37
429 changed files with 5307 additions and 2831 deletions

View File

@@ -14,14 +14,17 @@ class LocalPersistentVolume extends Model
{
return $this->morphTo('resource');
}
public function service()
{
return $this->morphTo('resource');
}
public function database()
{
return $this->morphTo('resource');
}
public function standalone_postgresql()
{
return $this->morphTo('resource');
@@ -44,7 +47,7 @@ class LocalPersistentVolume extends Model
protected function hostPath(): Attribute
{
return Attribute::make(
set: function (string|null $value) {
set: function (?string $value) {
if ($value) {
return Str::of($value)->trim()->start('/')->value;
} else {