We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1871f7b commit e672619Copy full SHA for e672619
src/Mta.php
@@ -94,7 +94,7 @@ public static function doReturn(...$arguments): void
94
public function callFunction(string $resourceName, string $function, array $arguments = null): ?array
95
{
96
$json_output = $arguments? Translator::toServer($arguments) : '';
97
- $path = sprintf('/%s/call/%s', $resourceName, $function);
+ $path = sprintf('%s/call/%s', $resourceName, $function);
98
$result = $this->do_post_request($path, $json_output);
99
$out = Translator::fromServer($result);
100
0 commit comments