Implements Drupal\Component\PhpStorage\PhpStorageInterface::delete().
Overrides PhpStorageInterface::delete
File
- drupal/core/lib/Drupal/Component/PhpStorage/FileStorage.php, line 63
- Definition of Drupal\Component\PhpStorage\FileStorage.
Class
- FileStorage
- Stores the code as regular PHP files.
Namespace
Drupal\Component\PhpStorage
Code
public function delete($name) {
$path = $this
->getFullPath($name);
return @unlink($path);
}