fix calendar css, take 2. (#213)
[openemr.git] / interface / modules / zend_modules / library / Zend / Db / Sql / Ddl / Column / Floating.php
blob85343cef474c5f985b519be12eda5895217e9a68
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Db\Sql\Ddl\Column;
12 /**
13 * Column representing a FLOAT type.
15 * Cannot name a class "float" starting in PHP 7, as it's a reserved keyword;
16 * hence, "floating", with a type of "FLOAT".
18 class Floating extends AbstractPrecisionColumn
20 /**
21 * @var string
23 protected $type = 'FLOAT';