Skip to content

Commit

Permalink
Skips do not have class or method info.
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuswilms committed May 23, 2012
1 parent b61f594 commit 138e8e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions console/command/Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ protected function _init() {
$command->out(sprintf(
'[%s] %s::%s()',
$colorize(sprintf('%9s', $result['result'])),
$result['class'],
$result['method']
isset($result['class']) ? $result['class'] : '??',
isset($result['method']) ? $result['method'] : '??'
));
};
} else {
Expand Down

0 comments on commit 138e8e3

Please sign in to comment.