You are here

public function Base::realPath in DRD Agent 8.3

Same name and namespace in other branches
  1. 4.0.x src/Agent/Action/Base.php \Drupal\drd_agent\Agent\Action\Base::realPath()

Parameters

$path:

Return value

string

Overrides BaseInterface::realPath

2 calls to Base::realPath()
Base::run in src/Agent/Action/Base.php
Main callback to execute an action.
Database::execute in src/Agent/Action/Database.php
Execute an action.

File

src/Agent/Action/Base.php, line 494

Class

Base
Base class for Remote DRD Action Code.

Namespace

Drupal\drd_agent\Agent\Action

Code

public function realPath($path) : string {
  return $this->fileSystem
    ->realpath($path);
}