Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class PlainText extends GreedyLanguage |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * Tokenization rules |
||
24 | */ |
||
25 | 1 | public function setupRules() |
|
26 | { |
||
27 | 1 | } |
|
28 | |||
29 | /** {@inheritdoc} */ |
||
30 | 1 | public function getIdentifier() |
|
31 | { |
||
32 | 1 | return 'plaintext'; |
|
33 | } |
||
34 | |||
35 | public static function getMetadata() |
||
40 | ]; |
||
41 | } |
||
42 | } |
||
43 |