2023-04-19 12:42:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Livewire\Application;
|
|
|
|
|
|
|
|
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
|
|
|
}
|