Skip to content

Commit

Permalink
Fix missing semi-colon.
Browse files Browse the repository at this point in the history
  • Loading branch information
gauthierm committed Dec 31, 2011
1 parent ee2158b commit b2b21c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Services/Amazon/SQS/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ public function getAttributes($name = 'All')
// message since we could have used an array of attribute
// names.
$exp = '/^Unknown Attribute (.*)$/';
$matches = array()
$matches = array();
if (preg_match($exp, $e->getMessage(), $matches) === 1) {
throw new Services_Amazon_SQS_InvalidAttributeException(
'The attribute name "' . $matches[1] . '" is not a ' .
Expand Down

0 comments on commit b2b21c8

Please sign in to comment.