2024-01-23 16:13:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
|
|
class SharedEnvironmentVariable extends Model
|
|
|
|
|
{
|
|
|
|
|
protected $guarded = [];
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2025-01-07 13:52:08 +00:00
|
|
|
protected function casts(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'key' => 'string',
|
|
|
|
|
'value' => 'encrypted',
|
|
|
|
|
];
|
|
|
|
|
}
|
2024-01-23 16:13:23 +00:00
|
|
|
}
|