Skip to content

Commit 28ce2bb

Browse files
committed
Update InitAclsCmd.php
1 parent 5097bca commit 28ce2bb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/devtools/cmd/commands/InitAclsCmd.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@ public static function run(&$config, $options) {
6363
AclManager::initFromProviders([
6464
new AclCacheProvider()
6565
]);
66-
66+
ob_start();
6767
AclManager::initCache($config);
68-
echo ConsoleFormatter::showMessage('ACLs cache initialized!', 'success', 'init-acls');
68+
$res = ob_get_clean();
69+
echo ConsoleFormatter::showMessage($res, 'success', 'init-acls');
6970
}
7071
}
7172

0 commit comments

Comments
 (0)