🚧 Add maps to command

This commit is contained in:
Dan Jones 2022-08-21 22:42:02 -05:00
commit 90906a517d
2 changed files with 35 additions and 3 deletions

View file

@ -322,9 +322,11 @@ class MappableMedia extends AbstractMediaType
*/
protected function buildMaps(array $maps): array
{
$out = [];
// @todo
$commands = [];
foreach($maps as $map) {
array_push($commands, ...$map->buildCommand());
}
return $out;
return $commands;
}
}