Fenos\Notifynder\Parsers\NotifynderParser::getValues PHP Method

getValues() protected method

Get the values between {} and return an array of it.
protected getValues ( $body ) : mixed
$body
return mixed
    protected function getValues($body)
    {
        $values = [];
        preg_match_all(self::RULE, $body, $values);
        return $values[1];
    }