Skip to content

Commit

Permalink
Broke the constructor properties up into single lines to conform to t…
Browse files Browse the repository at this point in the history
…he PHP CodeSniffer rules
  • Loading branch information
jefersonralmeida committed Mar 19, 2024
1 parent 9eeaa39 commit 24d59b6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Provider/Azure.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ class Azure extends AbstractProvider
* @param array $collaborators
* @param string $urlAuthorize Base url for authorization.
*/
public function __construct(array $options = [], array $collaborators = [], string $urlAuthorize = 'https://login.microsoftonline.com')
public function __construct(
array $options = [],
array $collaborators = [],
string $urlAuthorize = 'https://login.microsoftonline.com'
)
{
$this->urlAuthorize = $urlAuthorize;
parent::__construct($options, $collaborators);
Expand Down

0 comments on commit 24d59b6

Please sign in to comment.