You are here

public function FileStorage::getFullPath in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/PhpStorage/FileStorage.php \Drupal\Component\PhpStorage\FileStorage::getFullPath()
  2. 9 core/lib/Drupal/Component/PhpStorage/FileStorage.php \Drupal\Component\PhpStorage\FileStorage::getFullPath()

File

core/lib/Drupal/Component/PhpStorage/FileStorage.php, line 143

Class

FileStorage
Stores the code as regular PHP files.

Namespace

Drupal\Component\PhpStorage

Code

public function getFullPath($name) {
  return $this->directory . '/' . $name;
}