Completed
Push — master ( f3b931...1b355d )
by Andrii
02:08
created

MarkdownRenderer::renderLink()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
cc 2
eloc 2
nc 2
nop 2
crap 6
1
<?php
2
3
/*
4
 * Changelog keeper
5
 *
6
 * @link      https://github.com/hiqdev/chkipper
7
 * @package   chkipper
8
 * @license   BSD-3-Clause
9
 * @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace hiqdev\chkipper\changelog;
13
14
use hiqdev\chkipper\history\Note;
15
16
/**
17
 * Markdown changelog renderer.
18
 *
19
 * @author Andrii Vasyliev <[email protected]>
20
 */
21
class MarkdownRenderer extends \hiqdev\chkipper\history\MarkdownRenderer
22
{
23
24
    public function renderNote(Note $note)
25
    {
26
        return $this->renderNoteHead($note);
27
    }
28
29
    public function renderLink($href, $link)
30
    {
31
        return preg_match('/^[0-9a-f]{7}$/', $link) ? null : parent::renderLink($href, $link);
32
    }
33
}
34