Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/zendframework/zendframework#6094-undefined-symbo…
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Apr 13, 2014
2 parents 269bdc5 + 22ffe10 commit 3ec9aa4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ public function getPersistence()
* - stdClass; if so, calls __toString() and verifies XML
* - string; if so, verifies XML
*
* @param DOMDocument|DOMNode|SimpleXMLElement|stdClass|string $request
* @param DOMDocument|DOMNode|SimpleXMLElement|\stdClass|string $request
* @return self
* @throws Exception\InvalidArgumentException
*/
Expand Down Expand Up @@ -880,7 +880,7 @@ public function getSoap()
* If no request is passed, pulls request using php:://input (for
* cross-platform compatibility purposes).
*
* @param DOMDocument|DOMNode|SimpleXMLElement|stdClass|string $request Optional request
* @param DOMDocument|DOMNode|SimpleXMLElement|\stdClass|string $request Optional request
* @return void|string
*/
public function handle($request = null)
Expand Down Expand Up @@ -999,7 +999,7 @@ public function registerFaultException($class)
/**
* Checks if provided fault name is registered as valid in this server.
*
* @param $fault Name of a fault class
* @param string $fault Name of a fault class
* @return bool
*/
public function isRegisteredAsFaultException($fault)
Expand Down

0 comments on commit 3ec9aa4

Please sign in to comment.