jamband\schemadump\SchemaDumpController::type PHP Метод

type() приватный Метод

Returns the constant strings of yii\db\Schema class. e.g. Schema::TYPE_PK
private type ( string $type ) : string
$type string the column type
Результат string
    private function type($type)
    {
        $class = new \ReflectionClass('yii\\db\\Schema');
        return $class->getShortName() . '::' . implode(array_keys($class->getConstants(), $type));
    }