mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
83 lines
1.5 KiB
PHP
83 lines
1.5 KiB
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Xentral\Components\SchemaCreator\Option;
|
||
|
|
||
|
final class TableOption
|
||
|
{
|
||
|
|
||
|
/** @var string $option */
|
||
|
private $option;
|
||
|
|
||
|
/** @var string $value */
|
||
|
private $value;
|
||
|
|
||
|
/**
|
||
|
* @param string $option
|
||
|
* @param string $value
|
||
|
*/
|
||
|
public function __construct(string $option, string $value)
|
||
|
{
|
||
|
$this->option = $option;
|
||
|
$this->value = $value;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getOption(): string
|
||
|
{
|
||
|
return $this->option;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getValue(): string
|
||
|
{
|
||
|
return $this->value;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $engine
|
||
|
*
|
||
|
* @return TableOption
|
||
|
*/
|
||
|
public static function fromEngine(string $engine): TableOption
|
||
|
{
|
||
|
return new self('engine', $engine);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $collation
|
||
|
*
|
||
|
* @return TableOption
|
||
|
*/
|
||
|
public static function fromCollation(string $collation): TableOption
|
||
|
{
|
||
|
return new self('collation', $collation);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $charset
|
||
|
*
|
||
|
* @return TableOption
|
||
|
*/
|
||
|
public static function fromCharset(string $charset): TableOption
|
||
|
{
|
||
|
return new self('charset', $charset);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $comment
|
||
|
*
|
||
|
* @return TableOption
|
||
|
*/
|
||
|
public static function fromComment(string $comment): TableOption
|
||
|
{
|
||
|
return new self('comment', $comment);
|
||
|
}
|
||
|
|
||
|
}
|