for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace donatj\MySqlSchema\Columns\String;
use donatj\MySqlSchema\Columns\Interfaces\RequiredLengthInterface;
use donatj\MySqlSchema\Columns\Traits\RequiredLengthTrait;
abstract class AbstractCharacterColumn extends AbstractStringColumn implements RequiredLengthInterface {
use RequiredLengthTrait;
/**
* @param string $name
* @param int $length
*/
public function __construct( $name, $length ) {
parent::__construct($name);
$this->setLength($length);
}