public InstallStorage::deleteAll($prefix = '')
Overrides Drupal\Core\Config\FileStorage::deleteAll().
Throws
\Drupal\Core\Config\StorageException
Overrides FileStorage::deleteAll
File
- core/lib/Drupal/Core/Config/InstallStorage.php, line 265
Class
- InstallStorage
- Storage used by the Drupal installer.
Namespace
Drupal\Core\Config
Code
1 2 3 | public function deleteAll( $prefix = '' ) { throw new StorageException( 'Delete operation is not allowed.' ); } |
Please login to continue.