Exakat\Analyzer\Type\ShouldTypecast::analyze PHP Метод

analyze() публичный Метод

public analyze ( )
    public function analyze()
    {
        $typeCasting = array('\\intval', '\\floatval', '\\strval', '\\boolval', '\\settype');
        $this->atomIs('Functioncall')->hasNoIn('METHOD')->tokenIs(array('T_STRING', 'T_NS_SEPARATOR'))->fullnspathIs($typeCasting)->back('first');
        $this->prepareQuery();
    }
ShouldTypecast