Skip to content

Commit

Permalink
fix php5.3 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
icewind1991 committed Aug 13, 2015
1 parent 33ab10c commit 2fc9501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function splitUser($user) {
} elseif (strpos($user, '\\')) {
return explode('\\', $user);
} else {
return [null, $user];
return array(null, $user);
}
}

Expand Down

0 comments on commit 2fc9501

Please sign in to comment.