lasthourcloud/app/Http/Livewire/Project/Application/EnvironmentVariables.php

11 lines
160 B
PHP
Raw Normal View History

2023-04-19 10:42:15 +00:00
<?php
2023-04-25 09:01:56 +00:00
namespace App\Http\Livewire\Project\Application;
2023-04-19 10:42:15 +00:00
use Livewire\Component;
2023-04-19 13:38:59 +00:00
class EnvironmentVariables extends Component
2023-04-19 10:42:15 +00:00
{
2023-04-19 13:38:59 +00:00
public array $envs = [];
2023-04-19 10:42:15 +00:00
}