| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function postConnect() |
||
| 32 | { |
||
| 33 | $this->Lexer->addPattern('\n\^', 'table'); |
||
| 34 | $this->Lexer->addPattern('\n\|', 'table'); |
||
| 35 | $this->Lexer->addPattern('[\t ]*:::[\t ]*(?=[\|\^])', 'table'); |
||
| 36 | $this->Lexer->addPattern('[\t ]+', 'table'); |
||
| 37 | $this->Lexer->addPattern('\^', 'table'); |
||
| 38 | $this->Lexer->addPattern('\|', 'table'); |
||
| 39 | $this->Lexer->addExitPattern('\n', 'table'); |
||
| 40 | } |
||
| 41 | |||
| 48 |