Total Complexity | 7 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class Mailcode_Parser_Statement_Tokenizer_Token_Keyword extends Mailcode_Parser_Statement_Tokenizer_Token |
||
22 | { |
||
23 | public function getNormalized(): string |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Retrieves the keyword, with : appended. |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getKeyword() : string |
||
34 | { |
||
35 | return $this->getMatchedText(); |
||
36 | } |
||
37 | |||
38 | public function isForIn() : bool |
||
39 | { |
||
40 | return $this->getKeyword() === Mailcode_Commands_Keywords::TYPE_IN; |
||
41 | } |
||
42 | |||
43 | public function isInsensitive() : bool |
||
46 | } |
||
47 | |||
48 | public function isURLEncoded() : bool |
||
51 | } |
||
52 | |||
53 | public function isURLDecode() : bool |
||
56 | } |
||
57 | |||
58 | public function isNoHTML() : bool |
||
63 |