Skip to content

Commit 2fdfd42

Browse files
Merge branch '6.2' into 6.3
* 6.2: Fix merge Migrate to `static` data providers using `rector/rector`
2 parents 2c36865 + aa0e85b commit 2fdfd42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/OptionsResolverTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ public function testDeprecationMessages(\Closure $configureOptions, array $optio
531531
$this->assertSame($expectedCount, $count);
532532
}
533533

534-
public function provideDeprecationData()
534+
public static function provideDeprecationData()
535535
{
536536
yield 'It deprecates an option with default message' => [
537537
function (OptionsResolver $resolver) {
@@ -821,7 +821,7 @@ public function testResolveFailsIfInvalidType($actualType, $allowedType, $except
821821
$this->resolver->resolve(['option' => $actualType]);
822822
}
823823

824-
public function provideInvalidTypes()
824+
public static function provideInvalidTypes()
825825
{
826826
return [
827827
[true, 'string', 'The option "option" with value true is expected to be of type "string", but is of type "bool".'],

0 commit comments

Comments
 (0)