handlers = $handlers; } public function handle(): array { $output = []; foreach ($this->handlers as $handler) { $output = array_merge($output, $handler->load()); } return $output; } }