for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace donatj\MySqlSchema\Columns\Traits;
trait OptionalLengthTrait {
/**
* @var int|null
*/
protected $length = null;
* @return int|null
public function getLength() {
return $this->length;
}
* @param int|null $length
public function setLength( $length = null ) {
$this->length = $length;