Exakat\Analyzer\Php\ListShortSyntax::analyze PHP Method

analyze() public method

public analyze ( )
    public function analyze()
    {
        // [$a, $b] = [1, 2], insteead of list($a, $b);
        $this->atomIs('Assignation')->outIs('LEFT')->atomIs('Functioncall')->tokenIs('T_OPEN_BRACKET');
        $this->prepareQuery();
    }
ListShortSyntax