diff vendor/symfony/http-foundation/RedirectResponse.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 12f9dff5fda9
line wrap: on
line diff
--- a/vendor/symfony/http-foundation/RedirectResponse.php	Thu Feb 28 11:14:44 2019 +0000
+++ b/vendor/symfony/http-foundation/RedirectResponse.php	Thu Feb 28 13:11:55 2019 +0000
@@ -32,7 +32,7 @@
      *
      * @see http://tools.ietf.org/html/rfc2616#section-10.3
      */
-    public function __construct($url, $status = 302, $headers = array())
+    public function __construct($url, $status = 302, $headers = [])
     {
         parent::__construct('', $status, $headers);
 
@@ -56,7 +56,7 @@
      *
      * @return static
      */
-    public static function create($url = '', $status = 302, $headers = array())
+    public static function create($url = '', $status = 302, $headers = [])
     {
         return new static($url, $status, $headers);
     }