public FileStorage::deleteAll()
Removes all files in this bin.
Overrides PhpStorageInterface::deleteAll
File
- core/lib/Drupal/Component/PhpStorage/FileStorage.php, line 207
Class
- FileStorage
- Stores the code as regular PHP files.
Namespace
Drupal\Component\PhpStorage
Code
1 2 3 | public function deleteAll() { return $this ->unlink( $this ->directory); } |
Please login to continue.