Closed bkdotcom closed 5 years ago
I just had a script crash and burn on this:
$firephp->group(0);
Exception : 'You must specify a label for the group!'
My suspicions were correct.. the group method is doing an "empty" test:
if (!$Name) { throw $this->newException('You must specify a label for the group!'); }
should be if ( is_null($Name) ) or if ( !isset($Name) )
don't be hatin' 0 and "0" ! :)
If you send PR I can merge this right away.
Can anyone tell me if this was solved by the PRs? /cc @bkdotcom
I just had a script crash and burn on this:
Exception : 'You must specify a label for the group!'
My suspicions were correct.. the group method is doing an "empty" test:
should be if ( is_null($Name) ) or if ( !isset($Name) )
don't be hatin' 0 and "0" ! :)