Elgg\CommitMessage::processMsg PHP Method

processMsg() private method

Process the msg into its parts
private processMsg ( ) : array
return array
    private function processMsg()
    {
        $matches = array();
        preg_match($this->formatRegex, $this->msg, $matches);
        foreach ($this->validMsgParts as $i => $part) {
            $this->{$part} = isset($matches[$i]) ? $matches[$i] : '';
        }
        $this->lengthyLines = $this->findLengthyLines($this->msg, $this->maxLineLength);
    }