Exakat\Analyzer\Common\FunctionDefaultValue::analyze PHP Method

analyze() public method

-1 will prevent rank to be found
public analyze ( )
    public function analyze()
    {
        $this->atomIs('Functioncall')->codeIs($this->code)->hasNoIn('METHOD')->outIs('ARGUMENTS')->noChildWithRank('ARGUMENT', $this->rank)->back('first');
        $this->prepareQuery();
    }

Usage Example

Ejemplo n.º 1
0
 public function analyze()
 {
     $this->code = 'mcrypt_create_iv';
     $this->rank = 1;
     parent::analyze();
 }
All Usage Examples Of Exakat\Analyzer\Common\FunctionDefaultValue::analyze
FunctionDefaultValue