Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit 3ebdc7e

Browse files
stevebaumanStyleCIBot
authored andcommitted
Applied fixes from StyleCI
1 parent 5ed8265 commit 3ebdc7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Middleware/WindowsAuthenticate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function handle(Request $request, Closure $next)
5656
$username = explode('\\', $account);
5757

5858
if (count($username) === 2) {
59-
list ($domain, $username) = $username;
59+
list($domain, $username) = $username;
6060
} else {
6161
$username = $username[key($username)];
6262
}

src/Traits/ImportsUsers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ protected function isAttributeCallback($string)
163163
protected function handleAttributeCallback(User $user, $callback)
164164
{
165165
// Explode the callback into its class and method.
166-
list ($class, $method) = explode('@', $callback);
166+
list($class, $method) = explode('@', $callback);
167167

168168
// Create the handler.
169169
$handler = app($class);

0 commit comments

Comments
 (0)