Completed
Branch master (3b2036)
by Andrew
04:31
created
src/AwsHelper/AwsHelper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -81,6 +81,9 @@
 block discarded – undo
81 81
         return $opts;
82 82
     }
83 83
 
84
+    /**
85
+     * @param string $iam_url
86
+     */
84 87
     private function getAccessData($iam_role, $iam_url)
85 88
     {
86 89
         /* grab the access and secret key from the iam role "aws-opsworks-ec2-role" */
Please login to merge, or discard this patch.
src/AwsHelper/S3Helper.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php namespace AwsHelper;
2 2
 
3 3
 use Aws\S3\S3Client;
4
-use Aws\S3\Exception\S3Exception;
5 4
 
6 5
 class S3Helper
7 6
 {
Please login to merge, or discard this patch.
src/AwsHelper/SqsHelper.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
     /**
97 97
      * Get a list of queue attributes
98
-     * @param  array $attributes An array of queue attribute names
98
+     * @param  string[] $attributes An array of queue attribute names
99 99
      * @return array             An array of specified queue attributes with keys as attribute names
100 100
      */
101 101
     public function getQueueAttributes($attributes)
@@ -135,6 +135,9 @@  discard block
 block discarded – undo
135 135
         return $this->data;
136 136
     }
137 137
 
138
+    /**
139
+     * @param string $key
140
+     */
138 141
     public function get($key)
139 142
     {
140 143
         return $this->data[$key];
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php namespace AwsHelper;
2 2
 
3 3
 use Aws\Sqs\SqsClient;
4
-use Aws\S3\Exception\S3Exception;
5 4
 
6 5
 class SqsHelper
7 6
 {
Please login to merge, or discard this patch.