cleanValue() public method

public cleanValue ( string $value ) : float
$value string
return float
Beispiel #1
0
 /**
  * @param float $number
  * @param bool  $getClone
  * @return $this
  */
 public function division($number, $getClone = false)
 {
     $divider = $this->_parser->cleanValue($number);
     return $this->_modifer($this->_value / $divider, 'Division with "' . $divider . '"', $getClone);
 }