| 1 | <?php  | 
            ||
| 7 | class TextFormatter implements ReportFormatter  | 
            ||
| 8 | { | 
            ||
| 9 | /**  | 
            ||
| 10 |      * {@inheritdoc} | 
            ||
| 11 | */  | 
            ||
| 12 | public function reportBeginning()  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 |      * {@inheritdoc} | 
            ||
| 19 | */  | 
            ||
| 20 | public function reportEnd()  | 
            ||
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * @param Issue $issue  | 
            ||
| 27 | *  | 
            ||
| 28 | * @return string The formatted issue.  | 
            ||
| 29 | */  | 
            ||
| 30 | public function formatIssue(Issue $issue)  | 
            ||
| 38 | |||
| 39 | private function formatSyntaxError(Issue $issue)  | 
            ||
| 54 | |||
| 55 | private function formatNotice(Issue $issue)  | 
            ||
| 75 | }  | 
            ||
| 76 |