PhpPeg\PHPBuilder::b PHP Method

b() public method

public b ( )
    function b()
    {
        $args = func_get_args();
        $entry = array_shift($args);
        $block = new PHPBuilder();
        call_user_func_array([$block, 'l'], $args);
        $this->lines[] = [$entry, $block->lines];
        return $this;
    }