isNumeric() public method

Is it an integer,double or number.
public isNumeric ( ) : boolean
return boolean
Example #1
0
 public function testIsNumericMethodFalseOnBoolean()
 {
     $variable = new Variable('a', 1, CompiledExpression::BOOLEAN);
     static::assertFalse($variable->isNumeric());
 }