diff modules/contrib/migrate_plus/src/DataFetcherPluginInterface.php @ 4:a9cd425dd02b

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:11:55 +0000
parents c75dbcec494b
children
line wrap: on
line diff
--- a/modules/contrib/migrate_plus/src/DataFetcherPluginInterface.php	Thu Feb 28 11:14:44 2019 +0000
+++ b/modules/contrib/migrate_plus/src/DataFetcherPluginInterface.php	Thu Feb 28 13:11:55 2019 +0000
@@ -15,7 +15,7 @@
   /**
    * Set the client headers.
    *
-   * @param $headers
+   * @param array $headers
    *   An array of the headers to set on the HTTP request.
    */
   public function setRequestHeaders(array $headers);
@@ -28,7 +28,7 @@
   /**
    * Return content.
    *
-   * @param $url
+   * @param string $url
    *   URL to retrieve from.
    *
    * @return string
@@ -39,10 +39,11 @@
   /**
    * Return Http Response object for a given url.
    *
-   * @param $url
+   * @param string $url
    *   URL to retrieve from.
    *
    * @return \Psr\Http\Message\ResponseInterface
+   *   The HTTP response message.
    */
   public function getResponse($url);