Neos\Eel\AbstractParser::match__Decimals PHP Метод

match__Decimals() публичный Метод

public match__Decimals ( $stack = [] )
    function match__Decimals($stack = array())
    {
        $matchrule = "_Decimals";
        $result = $this->construct($matchrule, $matchrule, null);
        if (($subres = $this->rx('/ \\.[0-9]+ /')) !== FALSE) {
            $result["text"] .= $subres;
            return $this->finalise($result);
        } else {
            return FALSE;
        }
    }