public function FileStorage::deleteAll in Drupal 8
Same name in this branch
- 8 core/lib/Drupal/Core/Config/FileStorage.php \Drupal\Core\Config\FileStorage::deleteAll()
- 8 core/lib/Drupal/Component/PhpStorage/FileStorage.php \Drupal\Component\PhpStorage\FileStorage::deleteAll()
Same name and namespace in other branches
- 9 core/lib/Drupal/Component/PhpStorage/FileStorage.php \Drupal\Component\PhpStorage\FileStorage::deleteAll()
Removes all files in this bin.
Overrides PhpStorageInterface::deleteAll
File
- core/
lib/ Drupal/ Component/ PhpStorage/ FileStorage.php, line 179
Class
- FileStorage
- Stores the code as regular PHP files.
Namespace
Drupal\Component\PhpStorageCode
public function deleteAll() {
return $this
->unlink($this->directory);
}