
| Current Path : /var/www/html/rocksensor1/web/core/lib/Drupal/Core/Flood/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/lib/Drupal/Core/Flood/PrefixFloodInterface.php |
<?php
namespace Drupal\Core\Flood;
/**
* Defines an interface for flood controllers that clear by identifier prefix.
*/
interface PrefixFloodInterface {
/**
* Makes the flood control mechanism forget an event by identifier prefix.
*
* @param string $name
* The name of an event.
* @param string $prefix
* The prefix of the identifier to be cleared.
*/
public function clearByPrefix(string $name, string $prefix): void;
}