You are here

public function FileStorage::writeable in Drupal 9

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

Whether this is a writable storage.

Return value

bool

Overrides PhpStorageInterface::writeable

File

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

Class

FileStorage
Stores the code as regular PHP files.

Namespace

Drupal\Component\PhpStorage

Code

public function writeable() {
  return TRUE;
}