Fenos\Notifynder\Parsers\NotifynderParser::getValues PHP Метод

getValues() защищенный Метод

Get the values between {} and return an array of it.
protected getValues ( $body ) : mixed
$body
Результат mixed
    protected function getValues($body)
    {
        $values = [];
        preg_match_all(self::RULE, $body, $values);
        return $values[1];
    }