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

11 lines
160 B
PHP
Raw Normal View History

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