| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function createParser() |
||
| 23 | { |
||
| 24 | $attrFactory = new AttrList(['class' => 'Chrisyue\PhpM3u8\Document\Rfc8216\Tag\StreamInf']); |
||
| 25 | $attrFactory->setReader($this->reader); |
||
| 26 | |||
| 27 | return new UriAwareAttrTagParser( |
||
| 28 | new Line('#EXT-X-STREAM-INF'), |
||
| 29 | $attrFactory->createTransformer(), |
||
| 30 | new UriParser(), |
||
| 31 | true |
||
| 32 | ); |
||
| 33 | } |
||
| 34 | |||
| 40 |