Skip to content

Commit

Permalink
Fix up syncer
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Dec 28, 2023
1 parent 4988f40 commit fb1bb8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sync/Syncer.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function syncAcl(Arguments $args, ConsoleIo $io) {
}

$io->info('Add ' . $controller);
$roles = $args->getArgument('roles');
$roles = (string)$args->getArgument('roles');
$roles = array_map('trim', explode(',', $roles));
$map = [
'*' => implode(', ', $roles),
Expand Down

0 comments on commit fb1bb8e

Please sign in to comment.