Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00% covered (danger)
0.00%
0 / 1
50.00% covered (warning)
50.00%
1 / 2
CRAP
83.33% covered (success)
83.33%
5 / 6
ConstraintRule
0.00% covered (danger)
0.00%
0 / 1
50.00% covered (warning)
50.00%
1 / 2
4.07
83.33% covered (success)
83.33%
5 / 6
 schemaToMySQL
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
2 / 2
 mySQLToSchema
0.00% covered (danger)
0.00%
0 / 1
3.14
75.00% covered (success)
75.00%
3 / 4
<?php
declare(strict_types = 1);
namespace Siesta\Driver\MySQL\MetaData;
use Siesta\Model\Reference;
use Siesta\Util\ArrayUtil;
/**
 * @author Gregor Müller
 */
class ConstraintRule
{
    const REFERENCE_OPTION_CASCADE = "CASCADE";
    const REFERENCE_OPTION_RESTRICT = "RESTRICT";
    const REFERENCE_OPTION_SET_NULL = "SET NULL";
    const REFERENCE_OPTION_NO_ACTION = "NO ACTION";
    const MAPPING = [
        Reference::ON_X_CASCADE => self::REFERENCE_OPTION_CASCADE,
        Reference::ON_X_NONE => self::REFERENCE_OPTION_NO_ACTION,
        Reference::ON_X_RESTRICT => self::REFERENCE_OPTION_RESTRICT,
        Reference::ON_X_SET_NULL => self::REFERENCE_OPTION_SET_NULL
    ];
    /**
     * @param string $option
     *
     * @return string|null
     */
    public static function schemaToMySQL(string $option)
    {
        $option = strtolower($option);
        return ArrayUtil::getFromArray(self::MAPPING, $option);
    }
    /**
     * @param string $option
     *
     * @return string|null
     */
    public static function mySQLToSchema(string $option)
    {
        foreach (self::MAPPING as $schema => $mySQL) {
            if ($option === $mySQL) {
                return $schema;
            }
        }
    }
}