Skip to content

Commit d3e6cd1

Browse files
committed
Merge branch '6.4' into 7.2
* 6.4: skip failing Semaphore component tests on GitHub Actions with PHP 8.5 Update GetSetMethodNormalizer.php [Stopwatch] Fix StopWatchEvent never throws InvalidArgumentException
2 parents ed5e8b5 + a221b2f commit d3e6cd1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Normalizer/GetSetMethodNormalizer.php

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ private function isSetMethod(\ReflectionMethod $method): bool
100100
return !$method->isStatic()
101101
&& !$method->getAttributes(Ignore::class)
102102
&& 0 < $method->getNumberOfParameters()
103+
&& 3 < \strlen($method->name)
103104
&& str_starts_with($method->name, 'set')
104105
&& !ctype_lower($method->name[3])
105106
;

0 commit comments

Comments
 (0)