Skip to content

Commit

Permalink
Add return type for LogCalls::getIterator
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenDeDauw committed Jan 25, 2022
1 parent 62af6fa commit 9ef8501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LogCalls.php
Expand Up @@ -23,7 +23,7 @@ public function __construct( LogCall... $calls ) {
$this->calls = $calls;
}

public function getIterator() {
public function getIterator(): \ArrayIterator {
return new \ArrayIterator( $this->calls );
}

Expand Down

0 comments on commit 9ef8501

Please sign in to comment.