
| Current Path : /var/www/html/recommended-project/web/core/lib/Drupal/Core/Database/Event/ |
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/recommended-project/web/core/lib/Drupal/Core/Database/Event/DatabaseEvent.php |
<?php
namespace Drupal\Core\Database\Event;
use Drupal\Component\EventDispatcher\Event;
/**
* Represents a database event.
*/
abstract class DatabaseEvent extends Event {
/**
* The time of the event.
*/
public readonly float $time;
/**
* Constructs a DatabaseEvent object.
*/
public function __construct() {
$this->time = microtime(TRUE);
}
}