Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed May 24, 2019
1 parent 9c121da commit f1ee032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Auth/Process/Authorize.php
Expand Up @@ -121,7 +121,7 @@ public function process(&$request)
foreach ($this->valid_attribute_values as $name => $patterns) {
if (array_key_exists($name, $attributes)) {
foreach ($patterns as $pattern) {
$values = Arrays:arrayize($attributes[$name]);
$values = Arrays::arrayize($attributes[$name]);
foreach ($values as $value) {
if ($this->regex) {
$matched = preg_match($pattern, $value);
Expand Down

0 comments on commit f1ee032

Please sign in to comment.