server list, logs removed, driver/plan wip
This commit is contained in:
15
app/Data/Deployments/Plan.php
Normal file
15
app/Data/Deployments/Plan.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Data\Deployments;
|
||||
|
||||
class Plan
|
||||
{
|
||||
/**
|
||||
* @param Step[] $steps
|
||||
*/
|
||||
public function __construct(
|
||||
public array $steps = [],
|
||||
) {
|
||||
//
|
||||
}
|
||||
}
|
||||
11
app/Data/Deployments/Step.php
Normal file
11
app/Data/Deployments/Step.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Data\Deployments;
|
||||
|
||||
class Step
|
||||
{
|
||||
public function __construct(
|
||||
) {
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user