AssetCompress\Filter\ImportInline::scanner PHP Method

scanner() protected method

This allows ImportInline to support theme & plugin prefixes.
protected scanner ( ) : AssetScanner
return AssetCompress\AssetScanner
    protected function scanner()
    {
        if (isset($this->scanner)) {
            return $this->scanner;
        }
        $this->scanner = new AssetScanner($this->_settings['paths'], isset($this->_settings['theme']) ? $this->_settings['theme'] : null);
        return $this->scanner;
    }
ImportInline