Subject: | App::CmdDispatch::MinimalIO->new() returns an object blessed into the package 1 |
```
# pkit -MApp::CmdDispatch::IO -e 'd(App::CmdDispatch::MinimalIO->new())'
debug() ref(1=HASH(0xc444f0)) at -e line 1:
bless( {}, '1' )
```
Fix is simple:
Around line 41/42 of App/CmdDispatch/IO.pm it just needs unpacked correctly:
```
- my $class = @_;
+ my ($class) = @_;
```