Skip to content

Commit b79d723

Browse files
committed
Fixed the dockerfile when the composer autoload config is empty
1 parent 82f3b59 commit b79d723

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/ComplexResultBucketSpec.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function walkRejection(): iterable
5555
public function walkAcceptance(): iterable
5656
{
5757
return new class implements \IteratorAggregate {
58-
public function getIterator()
58+
public function getIterator(): \Traversable
5959
{
6060
yield from [
6161
new \stdClass(),
@@ -68,7 +68,7 @@ public function getIterator()
6868
public function walkRejection(): iterable
6969
{
7070
return new class implements \IteratorAggregate {
71-
public function getIterator()
71+
public function getIterator(): \Traversable
7272
{
7373
yield from [
7474
new \stdClass(),
@@ -119,7 +119,7 @@ public function walkRejection(): iterable
119119
public function walkAcceptance(): iterable
120120
{
121121
return new class implements \IteratorAggregate {
122-
public function getIterator()
122+
public function getIterator(): \Traversable
123123
{
124124
yield from [
125125
new \stdClass(),
@@ -132,7 +132,7 @@ public function getIterator()
132132
public function walkRejection(): iterable
133133
{
134134
return new class implements \IteratorAggregate {
135-
public function getIterator()
135+
public function getIterator(): \Traversable
136136
{
137137
yield from [
138138
new \stdClass(),

0 commit comments

Comments
 (0)