Skip to content

Commit

Permalink
Merge pull request aws#835 from jeskew/fix/update-docblock-on-ses-client
Browse files Browse the repository at this point in the history
Add a docblock to the generateSmtpPassword method
  • Loading branch information
jeskew committed Dec 4, 2015
2 parents 56f1329 + 5dcef91 commit 9f3b6e0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Ses/SesClient.php
Expand Up @@ -87,6 +87,17 @@
*/
class SesClient extends \Aws\AwsClient
{
/**
* Create an SMTP password for a given IAM user's credentials.
*
* The SMTP username is the Access Key ID for the provided credentials.
*
* @link http://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-credentials.html#smtp-credentials-convert
*
* @param CredentialsInterface $creds
*
* @return string
*/
public static function generateSmtpPassword(CredentialsInterface $creds)
{
static $version = "\x02";
Expand Down

0 comments on commit 9f3b6e0

Please sign in to comment.