Determine if the string is composed of numeric characters.

Twine\Str::isNumeric() : bool

Examples

$string = new Twine\Str('1337');

        $string->isNumeric(); // Returns true
$string = new Twine\Str('john pinkerton');

        $string->isNumeric(); // Returns false