function LocalStream::realpath

Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::realpath().

Overrides StreamWrapperInterface::realpath

1 method overrides LocalStream::realpath()
DummyRemoteStreamWrapper::realpath in drupal/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyRemoteStreamWrapper.php
Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::realpath().

File

drupal/core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 142
Definition of Drupal\Core\StreamWrapper\LocalStream.

Class

LocalStream
Defines a Drupal stream wrapper base class for local files.

Namespace

Drupal\Core\StreamWrapper

Code

function realpath() {
  return $this
    ->getLocalPath();
}