1 | <?php declare(strict_types=1); |
||
10 | final class SlidesParam implements Param |
||
11 | { |
||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | public function parse($value, Presentation $presentation) |
||
46 | |||
47 | /** |
||
48 | * @param string $line |
||
49 | * |
||
50 | * @return bool |
||
51 | */ |
||
52 | private function isHeader1($line) |
||
56 | |||
57 | /** |
||
58 | * @param string $line |
||
59 | * |
||
60 | * @return bool |
||
61 | */ |
||
62 | private function isHeader2($line) |
||
66 | |||
67 | /** |
||
68 | * @param string $text |
||
69 | * |
||
70 | * @return string |
||
71 | */ |
||
72 | private function normalizeNewLines($text) |
||
78 | } |
||
79 |