404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@18.191.181.251: ~ $
<?php

namespace Doctrine\DBAL\Schema;

use Doctrine\Deprecations\Deprecation;

use function in_array;

/**
 * Represents the change of a column.
 */
class ColumnDiff
{
    /**
     * @deprecated Use {@see $fromColumn} and {@see Column::getName()} instead.
     *
     * @var string
     */
    public $oldColumnName;

    /**
     * @internal Use {@see getNewColumn()} instead.
     *
     * @var Column
     */
    public $column;

    /**
     * @deprecated Use {@see hasTypeChanged()}, {@see hasLengthChanged()}, {@see hasPrecisionChanged()},
     * {@see hasScaleChanged()}, {@see hasUnsignedChanged()}, {@see hasFixedChanged()}, {@see hasNotNullChanged()},
     * {@see hasDefaultChanged()}, {@see hasAutoIncrementChanged()} or {@see hasCommentChanged()} instead.
     *
     * @var string[]
     */
    public $changedProperties = [];

    /**
     * @internal Use {@see getOldColumn()} instead.
     *
     * @var Column|null
     */
    public $fromColumn;

    /**
     * @internal The diff can be only instantiated by a {@see Comparator}.
     *
     * @param string   $oldColumnName
     * @param string[] $changedProperties
     */
    public function __construct(
        $oldColumnName,
        Column $column,
        array $changedProperties = [],
        ?Column $fromColumn = null
    ) {
        if ($fromColumn === null) {
            Deprecation::triggerIfCalledFromOutside(
                'doctrine/dbal',
                'https://github.com/doctrine/dbal/pull/4785',
                'Not passing the $fromColumn to %s is deprecated.',
                __METHOD__,
            );
        }

        $this->oldColumnName     = $oldColumnName;
        $this->column            = $column;
        $this->changedProperties = $changedProperties;
        $this->fromColumn        = $fromColumn;
    }

    public function getOldColumn(): ?Column
    {
        return $this->fromColumn;
    }

    public function getNewColumn(): Column
    {
        return $this->column;
    }

    public function hasTypeChanged(): bool
    {
        return $this->hasChanged('type');
    }

    public function hasLengthChanged(): bool
    {
        return $this->hasChanged('length');
    }

    public function hasPrecisionChanged(): bool
    {
        return $this->hasChanged('precision');
    }

    public function hasScaleChanged(): bool
    {
        return $this->hasChanged('scale');
    }

    public function hasUnsignedChanged(): bool
    {
        return $this->hasChanged('unsigned');
    }

    public function hasFixedChanged(): bool
    {
        return $this->hasChanged('fixed');
    }

    public function hasNotNullChanged(): bool
    {
        return $this->hasChanged('notnull');
    }

    public function hasDefaultChanged(): bool
    {
        return $this->hasChanged('default');
    }

    public function hasAutoIncrementChanged(): bool
    {
        return $this->hasChanged('autoincrement');
    }

    public function hasCommentChanged(): bool
    {
        return $this->hasChanged('comment');
    }

    /**
     * @deprecated Use {@see hasTypeChanged()}, {@see hasLengthChanged()}, {@see hasPrecisionChanged()},
     * {@see hasScaleChanged()}, {@see hasUnsignedChanged()}, {@see hasFixedChanged()}, {@see hasNotNullChanged()},
     * {@see hasDefaultChanged()}, {@see hasAutoIncrementChanged()} or {@see hasCommentChanged()} instead.
     *
     * @param string $propertyName
     *
     * @return bool
     */
    public function hasChanged($propertyName)
    {
        return in_array($propertyName, $this->changedProperties, true);
    }

    /**
     * @deprecated Use {@see $fromColumn} instead.
     *
     * @return Identifier
     */
    public function getOldColumnName()
    {
        Deprecation::trigger(
            'doctrine/dbal',
            'https://github.com/doctrine/dbal/pull/5622',
            '%s is deprecated. Use $fromColumn instead.',
            __METHOD__,
        );

        if ($this->fromColumn !== null) {
            $name  = $this->fromColumn->getName();
            $quote = $this->fromColumn->isQuoted();
        } else {
            $name  = $this->oldColumnName;
            $quote = false;
        }

        return new Identifier($name, $quote);
    }
}

Filemanager

Name Type Size Permission Actions
Exception Folder 0755
Visitor Folder 0755
AbstractAsset.php File 6 KB 0644
AbstractSchemaManager.php File 49.85 KB 0644
Column.php File 9.38 KB 0644
ColumnDiff.php File 4.14 KB 0644
Comparator.php File 23.55 KB 0644
Constraint.php File 1.04 KB 0644
DB2SchemaManager.php File 12.66 KB 0644
DefaultSchemaManagerFactory.php File 578 B 0644
ForeignKeyConstraint.php File 11.03 KB 0644
Identifier.php File 666 B 0644
Index.php File 8.72 KB 0644
LegacySchemaManagerFactory.php File 455 B 0644
MySQLSchemaManager.php File 17.87 KB 0644
OracleSchemaManager.php File 16.03 KB 0644
PostgreSQLSchemaManager.php File 23.13 KB 0644
SQLServerSchemaManager.php File 18.6 KB 0644
Schema.php File 12.66 KB 0644
SchemaConfig.php File 2.4 KB 0644
SchemaDiff.php File 7.53 KB 0644
SchemaException.php File 5.41 KB 0644
SchemaManagerFactory.php File 381 B 0644
Sequence.php File 3.28 KB 0644
SqliteSchemaManager.php File 22.02 KB 0644
Table.php File 27.74 KB 0644
TableDiff.php File 9.61 KB 0644
UniqueConstraint.php File 3.19 KB 0644
View.php File 445 B 0644