Skip to content

Commit cf16cbf

Browse files
committed
Apply fixes from StyleCI
1 parent f170502 commit cf16cbf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Exceptions/DriverMissingConfigurationException.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ class DriverMissingConfigurationException extends InvalidArgumentException
1515
*/
1616
public static function make($provider, $keys)
1717
{
18-
return new static("Missing required configuration keys [" . implode(', ', $keys) . "] for [{$provider}] OAuth provider.");
18+
return new static('Missing required configuration keys ['.implode(', ', $keys)."] for [{$provider}] OAuth provider.");
1919
}
20-
}
20+
}

tests/SocialiteManagerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function test_it_throws_exception_when_client_secret_is_missing()
9090
'client_id' => 'github-client-id',
9191
'redirect' => 'http://your-callback-url',
9292
]);
93-
93+
9494
$factory->driver('github');
9595
}
9696

0 commit comments

Comments
 (0)