pipes = $pipes; } public function process(ServiceContext $ctx): ServiceContext { foreach ($this->pipes as $pipe) { $ctx = $pipe->process($ctx); } return $ctx; } }