Skip to content

Commit

Permalink
Fixed a constant declaration so it does not reference another constant.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremeamia committed Feb 9, 2013
1 parent 21245e9 commit 807cec5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Aws/Common/Enum/UaString.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

namespace Aws\Common\Enum;

use Aws\Common\Client\UserAgentListener;
use Aws\Common\Enum;

/**
Expand All @@ -27,7 +26,7 @@ class UaString extends Enum
/**
* @var string Name of the option used to add to the UA string
*/
const OPTION = UserAgentListener::OPTION;
const OPTION = 'ua.append';

/**
* @var string Resource iterator
Expand Down

0 comments on commit 807cec5

Please sign in to comment.