Esempio n. 1
0
 /**
  * Should the import be skipped?
  *
  * @return boolean|null
  */
 private function Skip($path, $env)
 {
     $path = realpath($path);
     if ($path && avada_Less_Parser::FileParsed($path)) {
         if (isset($this->currentFileInfo['reference'])) {
             return true;
         }
         return !isset($this->options['multiple']) && !$env->importMultiple;
     }
 }