Files
coolify/app/Models/SharedEnvironmentVariable.php
Andras Bacsai 16c0cd10d8 rector: arrrrr
2025-01-07 14:52:08 +01:00

19 lines
296 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SharedEnvironmentVariable extends Model
{
protected $guarded = [];
protected function casts(): array
{
return [
'key' => 'string',
'value' => 'encrypted',
];
}
}