Skip to content

Commit

Permalink
Remove incorrectly positioned optional parameter:
Browse files Browse the repository at this point in the history
parent:: class has a completely different signature for this method
anyway, and all client code most pass all parameters. phpdoc looks
really wrong, but don't know enough about this class to correct it.
  • Loading branch information
mrubinsk committed Aug 11, 2015
1 parent 0b65ca8 commit dee59dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Rpc/lib/Horde/Rpc/Soap.php
Expand Up @@ -128,7 +128,7 @@ function getResponse($request)
* @return mixed The returned result from the method
* @throws Horde_Rpc_Exception
*/
public static function request($url, $method, $params = null, $soap)
public static function request($url, $method, $params, $soap)
{
try {
return $soap->__soapCall($method, $params);
Expand Down

0 comments on commit dee59dd

Please sign in to comment.