-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Karl Hepler
committed
Feb 23, 2017
1 parent
13899e9
commit 6863749
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
src/OldTimeGuitarGuy/MechanicalTurk/Operations/GetAccountBalance.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace OldTimeGuitarGuy\MechanicalTurk\Operations; | ||
|
||
/** | ||
* The GetAccountBalance operation retrieves the amount of money in your Amazon Mechanical Turk account. | ||
* | ||
* http://docs.aws.amazon.com/AWSMechTurk/latest/AWSMturkAPI/ApiReference_GetAccountBalanceOperation.html | ||
*/ | ||
class GetAccountBalance extends Base\Operation | ||
{ | ||
/** | ||
* Determine if the given parameters satisfy this operation's requirements | ||
* | ||
* @param array $parameters | ||
* | ||
* @return boolean | ||
*/ | ||
protected function satisfiesRequirements(array $parameters) | ||
{ | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters