Path : /var/www/clients/client0/web25/web/vendor/doctrine/dbal/src/Event/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/vendor/doctrine/dbal/src/Event/SchemaEventArgs.php |
<?php namespace Doctrine\DBAL\Event; use Doctrine\Common\EventArgs; /** * Base class for schema related events. * * @deprecated */ class SchemaEventArgs extends EventArgs { private bool $preventDefault = false; /** @return SchemaEventArgs */ public function preventDefault() { $this->preventDefault = true; return $this; } /** @return bool */ public function isDefaultPrevented() { return $this->preventDefault; } }