@@ -62,6 +62,7 @@ |
||
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | + * @param integer $offset |
|
| 65 | 66 | * @return Chrisyue\PhpM3u8\Segment |
| 66 | 67 | */ |
| 67 | 68 | public function offsetGet($offset) |
@@ -143,7 +143,7 @@ |
||
| 143 | 143 | |
| 144 | 144 | public function dump() |
| 145 | 145 | { |
| 146 | - $lines = array_map(function (Segment $segment) { |
|
| 146 | + $lines = array_map(function(Segment $segment) { |
|
| 147 | 147 | return $segment->dump(); |
| 148 | 148 | }, $this->segments); |
| 149 | 149 | |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | |
| 23 | 23 | public function dump() |
| 24 | 24 | { |
| 25 | - $lines = array_map(function (DumpableInterface $dumper) { |
|
| 25 | + $lines = array_map(function(DumpableInterface $dumper) { |
|
| 26 | 26 | return $dumper->dump(); |
| 27 | 27 | }, $this->getComponents()); |
| 28 | 28 | |