Skip to content

Commit 358618f

Browse files
committed
Fixes CLI using $helpers as a hash with cli-config defining it as an array.
- Define it as the expected array('dm' => helper) hash. - This caused "[InvalidArgumentException] The helper "dm" is not defined."
1 parent a68f323 commit 358618f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/sandbox/cli-config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
require_once 'config.php';
66

7-
$helpers = array(new DocumentManagerHelper($dm));
7+
$helpers = array('dm' => new DocumentManagerHelper($dm));

0 commit comments

Comments
 (0)