|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the league/commonmark package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) Colin O'Dell <[email protected]> |
|
7
|
|
|
* (c) Rezo Zero / Ambroise Maupate |
|
8
|
|
|
* |
|
9
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
10
|
|
|
* file that was distributed with this source code. |
|
11
|
|
|
*/ |
|
12
|
|
|
|
|
13
|
|
|
declare(strict_types=1); |
|
14
|
|
|
|
|
15
|
|
|
namespace League\CommonMark\Extension\Footnote\Parser; |
|
16
|
|
|
|
|
17
|
|
|
use League\CommonMark\Extension\Footnote\Node\FootnoteRef; |
|
18
|
|
|
use League\CommonMark\Parser\Inline\InlineParserInterface; |
|
19
|
|
|
use League\CommonMark\Parser\InlineParserContext; |
|
20
|
|
|
use League\CommonMark\Reference\Reference; |
|
21
|
|
|
|
|
22
|
|
|
final class AnonymousFootnoteRefParser implements InlineParserInterface |
|
23
|
|
|
{ |
|
24
|
42 |
|
public function getCharacters(): array |
|
25
|
|
|
{ |
|
26
|
42 |
|
return ['^']; |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
18 |
|
public function parse(InlineParserContext $inlineContext): bool |
|
30
|
|
|
{ |
|
31
|
18 |
|
$container = $inlineContext->getContainer(); |
|
32
|
18 |
|
$cursor = $inlineContext->getCursor(); |
|
33
|
18 |
|
$nextChar = $cursor->peek(); |
|
34
|
18 |
|
if ($nextChar !== '[') { |
|
35
|
|
|
return false; |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
18 |
|
$state = $cursor->saveState(); |
|
39
|
|
|
|
|
40
|
18 |
|
$m = $cursor->match('/\^\[[^\n^\]]+\]/'); |
|
41
|
18 |
|
if ($m !== null) { |
|
42
|
18 |
|
if (\preg_match('#\^\[([^\]]+)\]#', $m, $matches) > 0) { |
|
43
|
18 |
|
$reference = $this->createReference($matches[1]); |
|
44
|
18 |
|
$container->appendChild(new FootnoteRef($reference, $matches[1])); |
|
45
|
|
|
|
|
46
|
18 |
|
return true; |
|
47
|
|
|
} |
|
48
|
|
|
} |
|
49
|
|
|
|
|
50
|
|
|
$cursor->restoreState($state); |
|
|
|
|
|
|
51
|
|
|
|
|
52
|
|
|
return false; |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
18 |
|
private function createReference(string $label): Reference |
|
56
|
|
|
{ |
|
57
|
18 |
|
$refLabel = Reference::normalizeReference($label); |
|
58
|
18 |
|
$refLabel = \mb_strtolower(\str_replace(' ', '-', $refLabel)); |
|
59
|
18 |
|
$refLabel = \substr($refLabel, 0, 20); |
|
60
|
|
|
|
|
61
|
18 |
|
return new Reference($refLabel, '#fn:' . $refLabel, $label); |
|
62
|
|
|
} |
|
63
|
|
|
} |
|
64
|
|
|
|
PHP Analyzer performs a side-effects analysis of your code. A side-effect is basically anything that might be visible after the scope of the method is left.
Let’s take a look at an example:
If we look at the
getEmail()method, we can see that it has no side-effect. Whether you call this method or not, no future calls to other methods are affected by this. As such code as the following is useless:On the hand, if we look at the
setEmail(), this method _has_ side-effects. In the following case, we could not remove the method call: