mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
73 lines
1.4 KiB
PHP
73 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Db\Sql\Ddl\Column;
|
|
|
|
abstract class AbstractLengthColumn extends Column
|
|
{
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $length;
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* @param int $length
|
|
*/
|
|
public function __construct($name, $length = null, $nullable = false, $default = null, array $options = array())
|
|
{
|
|
$this->setLength($length);
|
|
|
|
parent::__construct($name, $nullable, $default, $options);
|
|
}
|
|
|
|
/**
|
|
* @param int $length
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setLength($length)
|
|
{
|
|
$this->length = (int) $length;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getLength()
|
|
{
|
|
return $this->length;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getLengthExpression()
|
|
{
|
|
return (string) $this->length;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getExpressionData()
|
|
{
|
|
$data = parent::getExpressionData();
|
|
|
|
if ($this->getLengthExpression()) {
|
|
$data[0][1][1] .= '(' . $this->getLengthExpression() . ')';
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
}
|