Skip to content

Commit

Permalink
Fix CS error
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Jan 21, 2020
1 parent efbeff3 commit 0b46b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function routes(RouteBuilder $routes): void
'action' => 'verify',
];
$options = [
'token' => '[a-zA-Z0-9]{' . $length .'}',
'token' => '[a-zA-Z0-9]{' . $length . '}',
'pass' => ['token'],
];
$routes->connect('/verify/:token', $defaults, $options);
Expand Down

0 comments on commit 0b46b27

Please sign in to comment.