Completed
Push — 8.x-3.x ( 95a635...77a45b )
by Cameron
02:01
created
src/AkamaiClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
242 242
   /**
243 243
    * Create an array to pass to Akamai's purge function.
244 244
    *
245
-   * @param array $urls
245
+   * @param string[] $urls
246 246
    *   A list of URLs.
247 247
    *
248 248
    * @return array
Please login to merge, or discard this patch.
src/StatusStorage.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
    *
54 54
    * @param Response $response
55 55
    *   Response object, returned from a successful CCU call.
56
-   * @param array $queued_urls
56
+   * @param string[] $queued_urls
57 57
    *   A list of URLs enqueued in this request.
58 58
    */
59 59
   public function saveResponseStatus(Response $response, $queued_urls) {
@@ -120,6 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
   /**
122 122
    * {@inheritdoc}
123
+   * @param string $purge_id
123 124
    */
124 125
   public function get($purge_id) {
125 126
     return $this->getStatusByPurgeId($purge_id);
@@ -139,6 +140,7 @@  discard block
 block discarded – undo
139 140
 
140 141
   /**
141 142
    * {@inheritdoc}
143
+   * @param string $id
142 144
    */
143 145
   public function delete($id) {
144 146
     $this->deleteStatusByPurgeId($id);
Please login to merge, or discard this patch.