| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function create() |
||
| 22 | { |
||
| 23 | $stringUtility = new StringUtility(); |
||
| 24 | |||
| 25 | return new ParserBuilder( |
||
| 26 | new DetailListOfLineParser( |
||
| 27 | new DetailLineParser( |
||
| 28 | $stringUtility |
||
| 29 | ) |
||
| 30 | ), |
||
| 31 | new InformationListOfLineParser( |
||
| 32 | $stringUtility |
||
| 33 | ), |
||
| 34 | new ScoreboardListOfLineParser(), |
||
| 35 | new StatisticListOfLineParser( |
||
| 36 | $stringUtility |
||
| 37 | ) |
||
| 38 | ); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |