values[] = $value; } #[WorkflowMethod(name: 'AggregatedWorkflow')] public function run( int $count ) { yield Workflow::await(fn() => count($this->values) === $count); return $this->values; } }