Skip to content

Commit 654da4e

Browse files
committed
Fix models argument pb
1 parent 145d80b commit 654da4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Ubiquity/devtools/cmd/traits/CmdTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ protected static function getCompleteClassname($config, $classname, $type = 'mod
117117
$classname = $prefix . "\\" . $classname;
118118
}
119119
}
120-
return $classname;
120+
return str_replace("\\\\", "\\", $classname);
121121
}
122122

123123
protected static function getSelectedModels($models, $config) {

0 commit comments

Comments
 (0)