Add runtime and buildtime properties to environment variable booted method
This commit is contained in:
parent
fb8eb3fa37
commit
1998314340
1 changed files with 2 additions and 0 deletions
|
|
@ -65,6 +65,8 @@ protected static function booted()
|
|||
'value' => $environment_variable->value,
|
||||
'is_multiline' => $environment_variable->is_multiline ?? false,
|
||||
'is_literal' => $environment_variable->is_literal ?? false,
|
||||
'is_runtime' => $environment_variable->is_runtime ?? false,
|
||||
'is_buildtime' => $environment_variable->is_buildtime ?? false,
|
||||
'resourceable_type' => Application::class,
|
||||
'resourceable_id' => $environment_variable->resourceable_id,
|
||||
'is_preview' => true,
|
||||
|
|
|
|||
Loading…
Reference in a new issue