You are here

function StreamWrapper::url_stat in X Autoload 7.3

Parameters

string $path:

int $flags:

Return value

array

File

tests/Drupal/xautoload/Tests/StreamWrapper.php, line 73

Class

StreamWrapper
Intercept calls to the filesystem, so we don't have to create fixture files.

Namespace

Drupal\xautoload\Tests

Code

function url_stat($path, $flags) {
  return self::$filesystem
    ->getStat($path);
}