Failed Conditions
Push — psr2-config ( c6639e )
by Andreas
03:31
created

Multiplyentity::getSort()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace dokuwiki\Parsing\ParserMode;
4
5
/**
6
 * Implements the 640x480 replacement
7
 */
8
class Multiplyentity extends AbstractMode
9
{
10
11
    /** @inheritdoc */
12
    public function connectTo($mode)
13
    {
14
15
        $this->Lexer->addSpecialPattern(
16
            '(?<=\b)(?:[1-9]|\d{2,})[xX]\d+(?=\b)',
17
            $mode,
18
            'multiplyentity'
19
        );
20
    }
21
22
    /** @inheritdoc */
23
    public function getSort()
24
    {
25
        return 270;
26
    }
27
}
28