2024-01-23 17:13:23 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2024-04-15 12:46:22 +02:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2024-01-23 17:13:23 +01:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class SharedEnvironmentVariable extends Model
|
|
|
|
{
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $casts = [
|
|
|
|
'key' => 'string',
|
|
|
|
'value' => 'encrypted',
|
|
|
|
];
|
|
|
|
}
|