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

Multiplyentity   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 20
rs 10
c 0
b 0
f 0
wmc 2
lcom 1
cbo 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A connectTo() 0 9 1
A getSort() 0 4 1
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