mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
49 lines
1.3 KiB
PHP
49 lines
1.3 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;
|
|
|
|
/**
|
|
* Stub class for backwards compatibility.
|
|
*
|
|
* Since PHP 7 adds "float" as a reserved keyword, we can no longer have a class
|
|
* named that and retain PHP 7 compatibility. The original class has been
|
|
* renamed to "Floating", and this class is now an extension of it. It raises an
|
|
* E_USER_DEPRECATED to warn users to migrate.
|
|
*
|
|
* @deprecated
|
|
*/
|
|
class Float extends Floating
|
|
{
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* Raises a deprecation notice.
|
|
*/
|
|
public function __construct(
|
|
$name,
|
|
$digits = null,
|
|
$decimal = null,
|
|
$nullable = false,
|
|
$default = null,
|
|
array $options = array()
|
|
) {
|
|
trigger_error(
|
|
sprintf(
|
|
'The class %s has been deprecated; please use %s\\Floating',
|
|
__CLASS__,
|
|
__NAMESPACE__
|
|
),
|
|
E_USER_DEPRECATED
|
|
);
|
|
|
|
parent::__construct($name, $digits, $decimal, $nullable, $default, $options);
|
|
}
|
|
}
|