Files
keystone/app/Data/Operations/Plan.php

16 lines
199 B
PHP

<?php
namespace App\Data\Operations;
class Plan
{
/**
* @param PlannedStep[] $steps
*/
public function __construct(
public array $steps = [],
) {
//
}
}