Completed
Push — master ( 5938ae...d0576d )
by Carsten
01:37
created

FencedCodeTrait::identifyFencedCode()   B

Complexity

Conditions 9
Paths 31

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 9

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 6
cts 6
cp 1
rs 7.7368
c 0
b 0
f 0
cc 9
eloc 6
nc 31
nop 1
crap 9
1
<?php
2
/**
3
 * @copyright Copyright (c) 2014 Carsten Brandt
4
 * @license https://github.com/cebe/markdown/blob/master/LICENSE
5
 * @link https://github.com/cebe/markdown#readme
6
 */
7
8
namespace cebe\markdown\block;
9
10
/**
11
 * Adds the fenced code blocks
12
 *
13
 * automatically included 4 space indented code blocks
14
 */
15
trait FencedCodeTrait
16
{
17
	use CodeTrait;
18
19
	/**
20
	 * identify a line as the beginning of a fenced code block.
21
	 */
22 134
	protected function identifyFencedCode($line)
23
	{
24 134
		return ($line[0] === '`' && strncmp($line, '```', 3) === 0) ||
25 134
			   ($line[0] === '~' && strncmp($line, '~~~', 3) === 0) ||
26 133
			   (isset($line[3]) && (
27 112
					($line[3] === '`' && strncmp(ltrim($line), '```', 3) === 0) ||
28 134
					($line[3] === '~' && strncmp(ltrim($line), '~~~', 3) === 0)
29
			   ));
30
	}
31
32
	/**
33
	 * Consume lines for a fenced code block
34
	 */
35 7 View Code Duplication
	protected function consumeFencedCode($lines, $current)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
36
	{
37 7
		$line = ltrim($lines[$current]);
38 7
		$fence = substr($line, 0, $pos = strrpos($line, $line[0]) + 1);
39 7
		$language = rtrim(substr($line, $pos));
40
		// consume until end fence
41 7
		$content = [];
42 7
		for ($i = $current + 1, $count = count($lines); $i < $count; $i++) {
43 7
			if (($pos = strpos($line = $lines[$i], $fence)) === false || $pos > 3) {
44 7
				$content[] = $line;
45
			} else {
46 7
				break;
47
			}
48
		}
49
		$block = [
50 7
			'code',
51 7
			'content' => implode("\n", $content),
52
		];
53 7
		if (!empty($language)) {
54 2
			$block['language'] = $language;
55
		}
56 7
		return [$block, $i];
57
	}
58
}
59