You are here

function DummyFilesystem::resolvePath in X Autoload 7.3

File

tests/Drupal/xautoload/Tests/DummyFilesystem.php, line 69

Class

DummyFilesystem

Namespace

Drupal\xautoload\Tests

Code

function resolvePath($path) {
  if (isset($this->knownPaths[$path])) {
    return $this->knownPaths[$path];
  }
  else {
    return self::NOTHING;
  }
}