Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/.././././../vendor/phpoffice/../nesbot/../theseer/../laravel/./../unicodeveloper/../doctrine/dbal/./src/Cache/../Event
الملفات الموجودة في هذا الـ Path:
.
..
ConnectionEventArgs.php
Listeners
SchemaAlterTableAddColumnEventArgs.php
SchemaAlterTableChangeColumnEventArgs.php
SchemaAlterTableEventArgs.php
SchemaAlterTableRemoveColumnEventArgs.php
SchemaAlterTableRenameColumnEventArgs.php
SchemaColumnDefinitionEventArgs.php
SchemaCreateTableColumnEventArgs.php
SchemaCreateTableEventArgs.php
SchemaDropTableEventArgs.php
SchemaEventArgs.php
SchemaIndexDefinitionEventArgs.php
TransactionBeginEventArgs.php
TransactionCommitEventArgs.php
TransactionEventArgs.php
TransactionRollBackEventArgs.php

مشاهدة ملف: 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;
    }
}