We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a937dac commit a8342f6Copy full SHA for a8342f6
src/AutoReps.php
@@ -16,6 +16,7 @@
16
use FFMpeg\Format\VideoInterface;
17
use Streaming\Exception\InvalidArgumentException;
18
use Streaming\Exception\RuntimeException;
19
+use Traversable;
20
21
22
class AutoReps implements \IteratorAggregate
@@ -231,7 +232,7 @@ public function getKBitrate(): array
231
232
* Retrieve an external iterator reps
233
* @return \Traversable An instance of an object implementing <b>Iterator</b> or <b>Traversable</b>
234
*/
- public function getIterator()
235
+ public function getIterator(): Traversable
236
{
237
$reps = $this->getCalculatedReps();
238
array_push($reps, $this->getOriginalRep());
0 commit comments