Exakat\Analyzer\Arrays\EmptySlots::analyze PHP Method

analyze() public method

public analyze ( )
    public function analyze()
    {
        // array(1,2,3, ) or [ 4,5, ];
        $this->atomIs('Functioncall')->tokenIs(array('T_ARRAY', 'T_OPEN_BRACKET'))->outIs('ARGUMENTS')->outIs('ARGUMENT')->atomIs('Void')->isNot('rank', 0)->back('first');
        $this->prepareQuery();
    }
EmptySlots