public static function Drupal::flood in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal.php \Drupal::flood()
- 10 core/lib/Drupal.php \Drupal::flood()
Returns the flood instance.
Return value
\Drupal\Core\Flood\FloodInterface
2 calls to Drupal::flood()
- DrupalTest::testFlood in core/
tests/ Drupal/ Tests/ Core/ DrupalTest.php - Tests the flood() method.
- FloodTest::testCleanUp in core/
modules/ system/ tests/ src/ Kernel/ System/ FloodTest.php - Tests flood control mechanism clean-up.
File
- core/
lib/ Drupal.php, line 531
Class
- Drupal
- Static Service Container wrapper.
Code
public static function flood() {
return static::getContainer()
->get('flood');
}