Viewing File: /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/robmorgan/phinx/src/Phinx/Config/FeatureFlags.php

<?php

/**
 * MIT License
 * For full license information, please view the LICENSE file that was distributed with this source code.
 */

namespace Phinx\Config;

/**
 * Class to hold features flags to toggle breaking changes in Phinx.
 *
 * New flags should be added very sparingly.
 */
class FeatureFlags
{
    /**
     * @var bool Should Phinx create unsigned primary keys by default?
     */
    public static $unsignedPrimaryKeys = true;
    /**
     * @var bool Should Phinx create columns NULL by default?
     */
    public static $columnNullDefault = true;

    /**
     * Set the feature flags from the `feature_flags` section of the overall
     * config.
     *
     * @param array $config The `feature_flags` section of the config
     */
    public static function setFlagsFromConfig(array $config): void
    {
        if (isset($config['unsigned_primary_keys'])) {
            self::$unsignedPrimaryKeys = (bool)$config['unsigned_primary_keys'];
        }
        if (isset($config['column_null_default'])) {
            self::$columnNullDefault = (bool)$config['column_null_default'];
        }
    }
}
Back to Directory File Manager