Your IP : 216.73.216.40


Current Path : /var/www/html/ajay/phpwebsite-1.8.x/Global/Variable/
Upload File :
Current File : /var/www/html/ajay/phpwebsite-1.8.x/Global/Variable/Float.php

<?php
namespace Variable;
/**
 * A class to assist with float variables.
 * @author Matthew McNaney <mcnaney at gmail dot com>
 * @package Global
 * @subpackage Variable
 * @license http://opensource.org/licenses/lgpl-3.0.html
 */
class Float extends \Variable {
    /**
     * Checks to see if value is a float.
     * @param float $value
     * @return boolean | \Error
     */
    protected function verifyValue($value)
    {
        if (!is_float($value)) {
            throw new \Exception(t('Value is not a float'));
        }
        return true;
    }
}
?>