We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f63a79a commit a61a5f8Copy full SHA for a61a5f8
includes/drush.inc
@@ -188,7 +188,7 @@ function drush_op($callable) {
188
$args = func_get_args();
189
array_shift($args); // Skip function name
190
foreach ($args as $arg) {
191
- $args_printed[] = is_scalar($arg) ? $arg : (is_array($arg) ? 'Array' : 'Object');
+ $args_printed[] = is_scalar($arg) ? $arg : (is_object($arg) ? get_class($arg) : gettype($arg));
192
}
193
194
if (!is_array($callable)) {
0 commit comments