diff --git a/src/Server/StandardServer.php b/src/Server/StandardServer.php index 2cd0c1c..c2c55ce 100644 --- a/src/Server/StandardServer.php +++ b/src/Server/StandardServer.php @@ -1,8 +1,6 @@ helper->assertValidRequest($parsedBody); - $batched = is_array($parsedBody); - - $result = []; - foreach ((array) $parsedBody as $index => $operationParams) { - $result[] = $this->helper->executeOperation($this->config, $operationParams); + if (is_array($parsedBody)) { + return $this->helper->executeBatch($this->config, $parsedBody); + } else { + return $this->helper->executeOperation($this->config, $parsedBody); } - - return $batched ? $result : $result[0]; } }