From 8d52921e52a4fa71471d2b9df6cf57dbbc403cdb Mon Sep 17 00:00:00 2001 From: Jeferson Almeida Date: Wed, 3 Apr 2024 11:52:52 -0300 Subject: [PATCH] Fixed some linting requirements. --- src/Provider/Azure.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Provider/Azure.php b/src/Provider/Azure.php index 7965e17..78c8b08 100644 --- a/src/Provider/Azure.php +++ b/src/Provider/Azure.php @@ -39,11 +39,10 @@ class Azure extends AbstractProvider * @param string $urlAuthorize Base url for authorization. */ public function __construct( - array $options = [], - array $collaborators = [], + array $options = [], + array $collaborators = [], string $urlAuthorize = 'https://login.microsoftonline.com' - ) - { + ) { $this->urlAuthorize = $urlAuthorize; parent::__construct($options, $collaborators); }