Exakat\Analyzer\Classes\PssWithoutClass::analyze PHP Метод

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

public analyze ( )
    public function analyze()
    {
        // unresolved new pss()
        $this->atomIs('New')->outIs('NEW')->codeIs(array('parent', 'self', 'static'))->hasNoClassInterfaceTrait()->back('first');
        $this->prepareQuery();
        // unresolved pss::$property
        $this->atomIs('Staticproperty')->outIs('CLASS')->codeIs(array('parent', 'self', 'static'))->hasNoClassInterfaceTrait()->back('first');
        $this->prepareQuery();
        // unresolved pss::method
        $this->atomIs('Staticmethodcall')->outIs('CLASS')->codeIs(array('parent', 'self', 'static'))->hasNoClassInterfaceTrait()->back('first');
        $this->prepareQuery();
        // unresolved pss::constant
        $this->atomIs('Staticconstant')->outIs('CLASS')->codeIs(array('parent', 'self', 'static'))->hasNoClassInterfaceTrait()->back('first');
        $this->prepareQuery();
    }
PssWithoutClass