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

Commit

Permalink
Merge branch 'master' of git://github.com/zendframework/zf2
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 84 deletions.
14 changes: 0 additions & 14 deletions .travis/run-tests.sh

This file was deleted.

7 changes: 0 additions & 7 deletions .travis/skipped-components

This file was deleted.

61 changes: 0 additions & 61 deletions .travis/tested-components

This file was deleted.

2 changes: 1 addition & 1 deletion src/Client.php
Expand Up @@ -395,7 +395,7 @@ public function getClassmap()
public function setEncoding($encoding)
{
if (!is_string($encoding)) {
throw new ClientException('Invalid encoding specified');
throw new Exception\InvalidArgumentException('Invalid encoding specified');
}

$this->_encoding = $encoding;
Expand Down
2 changes: 1 addition & 1 deletion src/Server.php
Expand Up @@ -796,7 +796,7 @@ public function handle($request = null)
$setRequestException = null;
try {
$this->_setRequest($request);
} catch (Exception $e) {
} catch (\Exception $e) {
$setRequestException = $e;
}

Expand Down

0 comments on commit 226aada

Please sign in to comment.